gpt4 book ai didi

java - 比较 与 Comparable

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:26:35 25 4
gpt4 key购买 nike

我看不出这个默认排序方法(来自 java.util.Collections)之间有什么区别

public static <T extends Comparable<? super T>> void sort(List<T> list) {
//implementation
}

..还有这个:

public static <T extends Comparable<T>> void mySort(List<T> list) {
//implementation
}

虽然我知道'upper'和'lower'有界通配符之间的区别,但我仍然不明白为什么他们使用'?在这种情况下,super T' 而不是简单的 'T'。如果我使用这些方法,我会得到相同的结果。有什么建议吗?

最佳答案

对于您的版本,以下内容将无法编译:

class Base implements Comparable<Base> { ... }

class Derived extends Base { ... }

List<Derived> list = ...;

mySort(list);

Derived 扩展Comparable<Derived> .但是,它确实扩展了 Comparable<Base> (因此,Comparable<? super Derived>)。

关于java - 比较<? super T> 与 Comparable<T>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23323253/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com