-3

我需要检查一个值是否为-1。我在编译一些源代码时遇到了问题,我不确定如何解决这里的问题。

我知道我需要实施:

if(wifiManager.addNetwork(conf) == -1) {
    // Insert code to handle the failure here.
} else {
    // The rest of your code for the 'success' case here!
}

但我不确定我应该插入什么来处理失败。

4

1 回答 1

3

您可以通过比较语句wifiManager.addNetwork(conf);中的结果来做到这一点...if

if(wifiManager.addNetwork(conf) == -1) {
    // Insert code to handle the failure here.
} else {
    // The rest of your code for the 'success' case here!
}

我假设您正在使用Android 的WiFiManager.

于 2013-04-06T02:26:13.763 回答