Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.3k views
in Technique[技术] by (71.8m points)

Java 8实战中这处关于List.sort的说法是错了吗

我在1.8.0_217版本中查看java.util.List.sort源码和书中说的不一样,见下图。image


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

左面是对的。

翻了翻 JDK 官方仓库的提交记录,没找到右面的出处。


找了找这本书的原版,英文版中就是这样写的,那就不是中译本的问题了:

For example, in Java 8 you can now call the sort method directly on a List. This is made possible with the following default method in the Java 8 List interface, which calls the static method Collections.sort:

default void sort(Comparator<? super E> c) {

Collections.sort(this, c);

}


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...