boolean remindertextup = false;
remindertextup = text.contains("Unavailable");
if (value.contains("yes") && (remindertextup = true)){
//statement
}
但是如果文本不包含不可用且值包含是,则 if 语句仍然有效。
我在做什么错?
谢谢你。
PS:Eclipse 显示永远不会使用的布尔值提醒文本。
boolean remindertextup = false;
remindertextup = text.contains("Unavailable");
if (value.contains("yes") && (remindertextup = true)){
//statement
}
但是如果文本不包含不可用且值包含是,则 if 语句仍然有效。
我在做什么错?
谢谢你。
PS:Eclipse 显示永远不会使用的布尔值提醒文本。