scala的sorted,sortBy,sortWith
val lst = List(1,3,2,4,5)
//scala中对于集合的排序有三种方法:sorted,sortBy,sortWith
//sorted方法对一个集合进行自然排序,传递一个Ordering隐式参数 def sorted[B >: A](implicit ord: Ordering[B]): Repr
val nl = lst.sorted //1 2 3 4 5
for(i <- nl)
{
println(i)
}
//def sortBy[B](f: A => B)(implicit ord: Ordering[B]): Repr = sorted(ord on f) //ord中有一个on方法,接收一个函数参数f
println(lst.sortBy(a=>a).reverse) //5 4 3 2 1
//def sortWith(lt: (A, A) => Boolean): Repr = sorted(Ordering fromLessThan lt)
print(lst.sortWith(_<_)) // 1 2 3 4 5
倘若我心中的山水你眼中都看到我便一步一莲花祈祷怎知那浮生一片草岁月催人老风月花鸟
相关推荐
匆匆那些年 2020-10-15
TheBigBlue 2020-07-28
shenwenjie 2020-07-07
muhongdi 2020-07-07
waitwolf 2020-07-08
yunfenglee 2020-07-08
yunfenglee 2020-07-08
kekeromer 2020-07-08
匆匆那些年 2020-07-07
liqinglin0 2020-07-05
TheBigBlue 2020-07-05
kekeromer 2020-06-13
zhixingheyitian 2020-06-08
TheBigBlue 2020-06-06
liqinglin0 2020-06-01
liqinglin0 2020-06-01
yunfenglee 2020-05-30
MICKEYSTUDY 2020-05-28
muhongdi 2020-05-19