gpt4 book ai didi

java - 如何遍历 Collection>

转载 作者:行者123 更新时间:2023-11-29 06:47:46 26 4
gpt4 key购买 nike

我有这样的东西:

something need here  = scope.getConnections();

//getConnections() returns Collection<Set<IConnection>>

我需要遍历所有连接(getConnections() 返回的内容)

怎么做?

最佳答案

Collection<Set<IConnection>> sets = scope.getConnections();

for (Set<IConnection> set : sets) {
for (IConnection connection : set) {
//do something
}
}

关于java - 如何遍历 Collection<Set<IConnection>>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1734527/

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