best way to call a method of each object in a collection
This question already has an answer here:
for (MyOb o: objs.values()) {
o.tick();
}
您也可以使用Java 8中的流API执行此操作:
objs.values().forEach(v -> v.tick());
objs.forEach((k, v) -> v.tick());
链接地址: http://www.djcxy.com/p/17986.html
下一篇: 调用集合中每个对象的方法的最佳方法