gpt4 book ai didi

java - Java中返回 boolean 值的最佳方式

转载 作者:行者123 更新时间:2023-12-02 08:26:38 24 4
gpt4 key购买 nike

我是一名初学者程序员。

我对返回 boolean 的方式有疑问值。

你喜欢哪个?出于什么原因?

1.

public boolean methodA(List<String> targetList){
boolean result = false;
for(String str : targetList){

if(str.equals("word1")) {
result = true;
break;
}
if(str.equals("word2")) {
result = true;
break;
}
}
return result;
}

2.

public boolean methodB(List<String> targetList){
boolean result = false;
for(String str : targetList){

if(str.equals("word1")) {
return true;
}
if(str.equals("word2")) {
return true;
}
}
return result;
}

最佳答案

public boolean methodABC(List<String> list) {
return list.contains("word1") || list.contains("word2");
}

关于java - Java中返回 boolean 值的最佳方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31713837/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com