我有这样的事情:
something need here = scope.getConnections();
//getConnections() returns Collection<Set<IConnection>>
我需要遍历所有连接(
getConnections()
返回的内容)怎么做 ?
最佳答案
for (Set<IConnection> set : scope.getConnections()) {
for (IConnection iConnection : set) {
// use each iConnection
}
}