stream 流根据属性字段长度自定义排序
时间: 2023-10-20 10:05:51 浏览: 270
node.js使用stream模块实现自定义流示例
可以通过自定义比较函数来实现根据属性字段长度进行排序。以下是一个示例代码:
```java
import java.util.*;
import java.util.stream.Collectors;
public class Main {
public static void main(String[] args) {
List<String> words = Arrays.asList("apple", "banana", "cherry", "date", "elderberry", "fig");
List<String> sortedWords = words.stream()
.sorted(Comparator.comparingInt(String::length))
.collect(Collectors.toList());
System.out.println(sortedWords);
}
}
```
在上面的代码中,我们使用 `Comparator.comparingInt` 方法来指定比较函数。该方法接受一个函数作为参数,该函数将一个对象映射为一个整数,用于比较排序。在这里,我们使用 `String::length` 方法作为映射函数,将每个字符串映射为其长度。然后我们使用 `sorted` 方法进行排序,并使用 `Collectors.toList` 方法将结果收集到一个列表中。最后,我们打印排序后的列表。
阅读全文