gpt4 book ai didi

java - 未显示所有值

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

不循环for循环。给我正确的大小,但只有第一个值(文本)被获取并显示在控制台上,我想在屏幕上显示所有值(文本)

System.out.println(totalLOB.size());//给出正确的大小,即 3

这是代码:

for(int i = 1; i <= NoOfDivs; i++)  {
String measureName = measureNameList.get(i).getText();
clickOnAllMeasureListOneAfterOther.get(i).click();

System.out.println(totalLOB.size());
for(int j = 0; j <= totalLOB.size(); j++) {
if(totalLOB.get(j) != null) {
System.out.println(totalLOB.get(j).getText());
}
}
}

上面的代码仅在控制台上显示第一个值(文本)。
并抛出以下错误消息:

java.lang.IndexOutOfBoundsException:索引 3,大小 3

任何意见或建议都是值得赞赏和需要的!谢谢。

最佳答案

int q = 1;
for(int j=0;j<totalNoOfLOB.size();j++) {
System.out.print(totalNoOfLOB.get(j).getText());
for(int p=q+1;p<combinedPerformanceOfMeasure.size();p++) {
System.out.print(" " + combinedPerformanceOfMeasure.get(p).getText());
break;
}
System.out.print("\n")
q++;
}

关于java - 未显示所有值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58718003/

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