前提: 当用到scala的sortWith,发现: def sortWith(lt: (A, A) ⇒ Boolean): List[A] // A为列表元素类型 根据指定比较函数lt进行排序,且排序是稳定的, 最终实质上是调用 java.util.Arrays.sort进行排序的. eg: List(1, -3, 4, 2, 6) sortWith (_ < _) //res48: List[Int] = List(-3, 1, 2, 4, 6) 故,到去了解一下 java.util.Arr…