java list.foreach方法_Java 集合List及Map中forEach()方法
我们先看一个forEach()方法遍历List集合的例子://使用com.google.guava包创建集合List list =Lists.newArrayList("a","b","c","d");//遍历1 其中anyThing可以用其它字符替换list.forEach((anyThing)->System.out.println(anyThing));//遍历2list.forEa...