java8 新特性
Posted 小白成长路
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java8 新特性相关的知识,希望对你有一定的参考价值。
直接上码:
public class demo {
private static String prints(String str){
str+="---helloworld";
System.out.println(str);
return str;
}
public static void main(String[] args) {
List<String> list = new ArrayList<String>();
list.add("a");
list.add("b");
list.add("c");
System.out.println(list);
System.out.println("=1.=====================");
for(int a=0;a<list.size();a++){
System.out.println(list.get(a));
}
System.out.println("=2.=====================");
for(String a: list){
System.out.println(a);
}
System.out.println("=3.====================使用java8===");
list.forEach((a)->System.out.println(a));
System.out.println("=4.====================");
list.forEach(System.out::println);
System.out.println("=5.====================");
list.forEach(demo::prints);
输出结果:
[a, b, c]
=1.=====================
a
b
c
=2.=====================
a
b
c
=3.====================使用java8===
a
b
c
=4.====================
a
b
c
=5.====================
a---helloworld
b---helloworld
c---helloworld
需要注意的是:“::”对应的方法是静态的,当然也可以是构造方法,另外再写出。
以上是关于java8 新特性的主要内容,如果未能解决你的问题,请参考以下文章