ArrayList 想移除特定值

URL Link //n.sfs.tw/13242

2019-04-11 11:49:56 By igogo

 

想移出water,  使用lambda 的方式如下


    List<String> fruits = new ArrayList<>();
        Arrays.asList("apple", "orange","water").forEach(fruit -> fruits.add(fruit));
      

        (fruits.stream()
                .filter(item -> !item.equals("water"))
                .collect(Collectors.toList())
        ).forEach(fruit -> System.out.println(fruit));