boolean remindertextup = false;
remindertextup = text.contains("Unavailable");
if (value.contains("yes") && (remindertextup = true)){
//statement
}
但是,如果文本不包含不可用且值包含yes,则if语句仍然有效。
我做错了什么?
谢谢。
附言:Eclipse显示了从未使用过的布尔提醒文本。
最佳答案
您在if
子句中编写的内容将remindertextup
设置为true
。更改为:
(remindertextup == true)
关于android - 我对这个 bool 值做错什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17152992/