如何在构造函数内实例化比较器

发布于 2024-12-09 23:36:05 字数 440 浏览 1 评论 0原文

我从未见过在 TreeMap 结构的构造函数内部创建比较器。人们会如何去做这件事呢?有没有办法让 TreeMap() 构造函数调用另一个具有比较器参数的 TreeMap 构造函数来设置比较器?

private Comparator<? super K> cmp;
private Node root;
private int size;
private final String indentStr = "   ";

public TreeMap() {
    // Create cmp assuming K implements Comparator
    //???  TreeMap(new Comparator<V>());
}

public TreeMap(Comparator<? super K> cmp) {
    this.cmp = cmp;
}

I have never seen a comparator created inside of a constructor for a TreeMap structure. How would one go about doing this? Is there a way to make the TreeMap() constructor call the other TreeMap constructor which has a comparator argument to set up the comparator?

private Comparator<? super K> cmp;
private Node root;
private int size;
private final String indentStr = "   ";

public TreeMap() {
    // Create cmp assuming K implements Comparator
    //???  TreeMap(new Comparator<V>());
}

public TreeMap(Comparator<? super K> cmp) {
    this.cmp = cmp;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

属性 2024-12-16 23:36:05

他们通常将该字段设置为 null,而不是实例化某些内容。

但如果您愿意,您可以:

this(new Comparator<K>() {
   public int compare(K k1, K k2) {
       return ((Comparable<K>) k1).compareTo(k2);
   }
});

问题是可能会发生 ClassCastException,因为您不知道元素的类型。

They usually set that fields to null, rather than instantiating something.

But if you want to, you can have:

this(new Comparator<K>() {
   public int compare(K k1, K k2) {
       return ((Comparable<K>) k1).compareTo(k2);
   }
});

The problem is that ClassCastException can occur, because you don't know the type of the elements.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文