heyu852521 发表于 2019-2-21 14:23:21

请问一下大神,这段代码语法有没有什么问题......................

本帖最后由 heyu852521 于 2019-2-21 14:25 编辑

public void int XXX(String ServiceUUID,String CharaUUID){
BluetoothGattService service = mBluetoothGatt.getService(UUID.fromString(ServiceUUID));
    if (service == null){ return 1; }else{
BluetoothGattCharacteristic characteristic = service.getCharacteristic(UUID.fromString(CharaUUID));
    if (characteristic == null){ return 2; }else{
boolean aaa = mBluetoothGatt.setCharacteristicNotification(characteristic, true);
    if (aaa == false){ return 3;}else{
BluetoothGattDescriptor desc = characteristic.getDescriptor(UUID.fromString(CharaUUID));
    if (desc == null){ return 4; }else{
       boolean bbb = desc.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
    if (bbb == false){ return 5; }else{
boolean ccc = mBluetoothGatt.writeDescriptor(desc);
    if (ccc == false){ return 6; }else{return 0;}}}}}}}

火山类库的代码


heyu852521 发表于 2019-2-22 21:22:22

这论坛咋了..................没人了吗

飞翔的企鹅 发表于 2019-2-23 11:48:12

方法声明就错了,void int ?格式的话除了mBluetoothGatt变量以外,没其他错误

heyu852521 发表于 2019-2-26 21:34:40

飞翔的企鹅 发表于 2019-2-23 11:48
方法声明就错了,void int ?格式的话除了mBluetoothGatt变量以外,没其他错误

mBluetoothGatt是个全局变量,去掉 void 就可以了是吧?
页: [1]
查看完整版本: 请问一下大神,这段代码语法有没有什么问题......................