Stream流中的常用方法_map、Stream流中的常用方法_count

Stream流中的常用方法_map

  如果需要将流中的元素映射到另一个流中,可以使用map方法

 案例:

   

public class map1 {
public static void main(String[] args) {
Stream<String> a = Stream.of("1", "2", "3", "4", "5");
// 使用map方法映射为int类型
Stream<Integer> stream = a.map(Integer::parseInt);

stream.forEach(System.out::println);
}
}

map方法也叫映射也叫转换

 

Stream流中的常用方法_count

  count方法是一个终结方法,返回值是一个long类型整数,所以不能在调用流中的其他方法

案例:

  

    public static void main(String[] args) {
ArrayList<Integer> list = new ArrayList<>();
list.add(1);
list.add(2);
list.add(3);
Stream<Integer> stream = list.stream();
long count = stream.count();
System.out.println(count);

}
}

运行结果:

  

 

posted @ 2022-07-24 09:32  一位程序袁  阅读(262)  评论(0编辑  收藏  举报