需要协助检查以查看值是否为-1

时间:2013-04-06 02:23:45

标签: java android eclipse null nullpointerexception

我需要检查一下值是否为-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!
}

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

1 个答案:

答案 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