gpt4 book ai didi

java - 循环遍历集合

转载 作者:行者123 更新时间:2023-12-01 08:03:41 25 4
gpt4 key购买 nike

我的代码有问题:

for (String functionChain : stringCollection) {
lblSource.setText(functionChain);
System.out.print(functionChain);
}

我想将文本设置为 lblSource 作为所有收集的字符串的“链”。
它确实可以与 System.out 一起使用,我的意思是它可以按照我想要的方式输出,但它不会将文本设置为标签,它只设置数组的最后一个值。
为什么会发生这种情况?我的意思是,system.out 很好,我采用相同的变量“functionChain”...但是 system.out 中的输出与标签中的不同。

最佳答案

首先获取旧值并连接。

lblSource.setText(lblSource.getText() + functionChain);

关于java - 循环遍历集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23301867/

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