gpt4 book ai didi

java - 我有一个数组,我想使用 edittext 检查数组中的所有值是否等于我想要的值

转载 作者:行者123 更新时间:2023-12-02 10:10:11 25 4
gpt4 key购买 nike

这是我的数组的示例

List<Integer> sampleList = new ArrayList<>();

该数组中的所有值是:

sampleList = [1,2,3,4,5,6]

基本上我正在使用 for循环该数组中的每个值

for (int i = 0; i < sampleList.size(); i++) {
int to = sampleList.get(i);
if (norooms == to) { //norooms = 1
//display a toast
}
}

我想检查位置 0-5 是否都等于 1,但我无法实现。任何帮助

最佳答案

你可以尝试这样的事情。

int editTextValue = 3; // Your edit text value
boolean isEqual = true;//Flag to check if all the values are equal or not.
for (int i=0; i<sampleList.size(); i++){
if (sampleList.get(i) != editTextValue){
isEqual = false;
break;
}
}

然后在循环结束后检查isEqual的条件并进行相应处理。

关于java - 我有一个数组,我想使用 edittext 检查数组中的所有值是否等于我想要的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55062072/

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