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