java8 新特性Lambda表达式之ForEach

//综合案例:集合的遍历forEach

public class Event_ForEach {

public static void main(String[] ags) {

Listpersons=new ArrayList<>();

persons.add(new Person("Lily",10));

persons.add(new Person("Poliy",20));

persons.add(new Person("LiHui",15));

persons.add(new Person("Lucy",13));

//forEach需要一个Consumer作为参数 Consumer是一个函数式接口 有一个void accept(T t);有参数无返回的接口

persons.forEach(ele->{if(ele.getAge()>16) {System.out.println(ele);}});

}

}

你可能感兴趣的:(java8,新特性Lambda表达式)