gpt4 book ai didi

java - boolean 方法无法正常工作

转载 作者:行者123 更新时间:2023-12-01 16:48:47 26 4
gpt4 key购买 nike

所以我真的不明白我在这里做错了什么。该方法应该采用一个 boolean 数组并检查所有元素是否为 true,如果有一个为 false,则应返回 false。

public static boolean nvm(boolean[] con) {
boolean c = true;

for(int i = 0; i < con.length ; i++) {
if (and(con[i], con[i++]) == false) {
c = false;
}
}
return c;
}

and检查两个 boolean 值,如果它们都为 true,则返回 true,否则返回 false。我已经测试过and ,但它工作正常。

这篇文章是在我的手机上写的,所以我希望它看起来不会很奇怪。感谢您的帮助。

最佳答案

The method should take a boolean array and check if all elements are true

for(int i = 0; i<con.length ; i++){
if(!con[i]) return false;
}

关于java - boolean 方法无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44869530/

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