递归火山软件开发平台

标题: 请问一下大神,这段代码语法有没有什么问题...................... [打印本页]

作者: heyu852521    时间: 2019-2-21 14:23
标题: 请问一下大神,这段代码语法有没有什么问题......................
本帖最后由 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
这论坛咋了..................没人了吗
作者: 飞翔的企鹅    时间: 2019-2-23 11:48
方法声明就错了,void int ?格式的话除了mBluetoothGatt变量以外,没其他错误
作者: heyu852521    时间: 2019-2-26 21:34
飞翔的企鹅 发表于 2019-2-23 11:48
方法声明就错了,void int ?格式的话除了mBluetoothGatt变量以外,没其他错误

mBluetoothGatt是个全局变量,去掉 void 就可以了是吧?




欢迎光临 递归火山软件开发平台 (https://bbs.voldp.com/) Powered by Discuz! X3.4