我需要检查一下值是否为-1。我遇到了一些我编译过的源代码问题,我不知道如何解决here的问题。
我知道我需要实施:
if(wifiManager.addNetwork(conf) == -1) {
// Insert code to handle the failure here.
} else {
// The rest of your code for the 'success' case here!
}
但我不确定应该插入什么来处理失败。
答案 0 :(得分: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's WiFiManager
。