如何迭代 Collection>

发布于 2024-08-10 19:52:31 字数 229 浏览 6 评论 0 原文

我有这样的事情:

something need here  = scope.getConnections();

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

我需要迭代所有连接(getConnections() 返回的内容)

如何做到这一点?

I have something like this:

something need here  = scope.getConnections();

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

I need to iterate through all connections (the stuff that the getConnections() returns)

How to do that ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

我最亲爱的 2024-08-17 19:52:31
Collection<Set<IConnection>> sets = scope.getConnections();

for (Set<IConnection> set : sets) {
  for (IConnection connection : set) {
     //do something
  }
}
Collection<Set<IConnection>> sets = scope.getConnections();

for (Set<IConnection> set : sets) {
  for (IConnection connection : set) {
     //do something
  }
}
苏佲洛 2024-08-17 19:52:31
for (Set<IConnection> set : scope.getConnections()) {
   for (IConnection iConnection : set) {
      // use each iConnection
   }
}
for (Set<IConnection> set : scope.getConnections()) {
   for (IConnection iConnection : set) {
      // use each iConnection
   }
}
绿阴红影里的.如风往事 2024-08-17 19:52:31

我建议您不要以您的方式返回连接。
您的 getConnections 必须仅返回

Collection<IConnection>

public Collection<IConnection> getConnections()
{
    return connections;
}

在您的类中,您可以选择您想要或需要存储它们的方式

private Set<IConnection> connections;

将双循环视为类设计中的一个问题。
如果我作为你的类的用户,每次都必须编写双循环,我将停止使用你的类。你的同事也会如此。

for (IConnection connection : provider.getConnections()) 
{
    connection.doAction();
}

I would recommend to you not to return connections in the way you do.
Your getConnections has to return only

Collection<IConnection>

public Collection<IConnection> getConnections()
{
    return connections;
}

Inside your class you can select the way you want or need to store them

private Set<IConnection> connections;

Consider double loop as a problem in your class design.
If I as a user of your class has to write double-loop every time I will stop using your class. So will do your colleagues.

for (IConnection connection : provider.getConnections()) 
{
    connection.doAction();
}
难如初 2024-08-17 19:52:31

两个嵌套的 for 循环答案可能就是您所需要的,但请注意,您还可以将“connections”集合传递给 google-collections 中的 Iterables.concat() ,并得到一个“扁平化”迭代。

http://google-collections.googlecode.com

The two-nested-for-loops answer is probably all you need, but note that you could also pass the 'connections' collection to Iterables.concat() in google-collections, and get out a single "flattened" iterable.

http://google-collections.googlecode.com

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文