Java 8引入了Stream API,它提供了一种函数式编程的方式来处理集合数据。Stream API提供了丰富的操作方法,可以对集合进行筛选、映射、排序等操作。下面是一些常用的Stream集合操作:
- 筛选(Filter):使用
filter
方法可以根据指定的条件筛选出集合中符合条件的元素。例如:List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10); List<Integer> evenNumbers = numbers.stream() .filter(n -> n % 2 == 0) .collect(Collectors.toList());
上述代码中,
filter
方法筛选出了列表中的偶数。 - 映射(Map):使用
map
方法可以将集合中的元素进行转换。例如:List<String> names = Arrays.asList("Alice", "Bob", "Charlie"); List<Integer> nameLengths = names.stream() .map(String::length) .collect(Collectors.toList());
上述代码中,
map
方法将字符串列表中的每个元素转换为其长度。 - 排序(Sort):使用
sorted
方法可以对集合中的元素进行排序。例如:List<String> names = Arrays.asList("Alice", "Bob", "Charlie"); List<String> sortedNames = names.stream() .sorted() .collect(Collectors.toList());
上述代码中,
sorted
方法对字符串列表进行字母排序。 - 匹配(Match):使用
anyMatch
、allMatch
和noneMatch
方法可以判断集合中的元素是否满足指定条件。例如:List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5); boolean anyMatch = numbers.stream().anyMatch(n -> n > 3); boolean allMatch = numbers.stream().allMatch(n -> n > 0); boolean noneMatch = numbers.stream().noneMatch(n -> n < 0);
上述代码中,
anyMatch
方法判断集合中是否存在大于3的元素,allMatch
方法判断集合中的元素是否全部大于0,noneMatch
方法判断集合中是否不存在小于0的元素。 - 归约(Reduce):使用
reduce
方法可以将集合中的元素进行归约操作,例如求和、求最大值等。例如:List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5); int sum = numbers.stream().reduce(0, (a, b) -> a + b); Optional<Integer> max = numbers.stream().reduce(Integer::max);
上述代码中,
reduce
方法将集合中的元素求和,第一个参数为初始值,第二个参数为归约操作。文章来源:https://www.toymoban.com/news/detail-560114.html这些只是Stream API提供的一些常用操作,还有其他丰富的操作方法可以根据实际需求使用。需要注意的是,Stream操作是惰性求值的,只有在终止操作(如
collect
、forEach
等)时才会执行。文章来源地址https://www.toymoban.com/news/detail-560114.html
到了这里,关于【面试题】JDK1.8新特性Stream详细介绍的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!