我正在寻找任何更好的方法来处理这个条件,如果打印值。我期待打印,如果两者都是真的,我想打印两条消息,如果不是只有一条消息。
boolean codeExists = false, nameExists = false;
for (condition) {
if(condition){
codeExists = true;
}
if(condition)) {
nameExists = true;
}
}
if(codeExists && nameExists) {
System.out.println("CodeExists");
System.out.println("NameExists");
}
else if(codeExists) {
System.out.println("CodeExists");
}
else if(nameExists) {
System.out.println("NameExists");
}
else {
System.out.println("Another statements to print");
}
我们有没有更好的方法来打印下面的信息。
4条答案
按热度按时间vs91vp4v1#
为什么不使用
kjthegm62#
先生,使用java流,别忘了检查性能。下面的例子至少对其他人有帮助。
xienkqul3#
798qvoo84#
那。。。