burukeYou / JDFrame

一个Java仿DataFrame模型的实现, 语意化和简化以及增强stream流式处理能力
https://burukeyou.github.io/JDFrame/
Apache License 2.0
246 stars 38 forks source link

排序问题 #22

Open wanhang189 opened 1 week ago

wanhang189 commented 1 week ago

排序方法是否可以加个参数,null值排第一或最后

burukeYou commented 1 week ago

默认null值都是放到最后,如果想放到前面 可以使用 sortAsc(NullLastComparator.comparing(Student::getAge)) 或者 sortDesc(NullFirstComparator..comparing(Student::getAge))