stream流中map()方法的用途
stream流中的map()方法是一种强大的工具,用于高效地转换流中的数据。
数据类型转换
map()方法可以将数据从一种类型转换为另一种类型。例如:
list<string> names = persons.stream() .map(person::getname) .collect(collectors.tolist());
这段代码从包含 person 对象的流中提取所有姓名并将其存储在 names 列表中。
提取属性集合
map()方法还可以用来从数据中提取指定属性的集合。例如:
list<integer> lengths = words.stream() .map(string::length) .collect(collectors.tolist());
这段代码将单词长度提取到 lengths 列表中。
计算总数或其他聚合值
对于基本类型(如 int),maptoint()方法可以用来计算总数或其他聚合值。例如:
int totalAge = persons.stream() .mapToInt(Person::getAge) .sum();
这段代码计算所有人员年龄的总和。
与map()方法的区别
maptoint()方法是map()方法的专门化版本,用于处理 int 类型。它在使用时会返回intstream,而不是stream