//第一种 filterApples(inventory,(Apple a)->{ System.out.println(a.getWeight); }); //第二种 filterApples(inventory,(Apple a)->System.out.println(a.getWeight) );
跟进中。。。。