gpt4 book ai didi

java - 如何解决 "the type parameter ListNode is hiding the type ListNode"?

转载 作者:行者123 更新时间:2023-12-01 23:52:43 26 4
gpt4 key购买 nike

我遇到了一些java类型参数的问题。这是代码。我有一个 ListNode 类和一个实现 Comparator 接口(interface)的 MyComparator 类。

class ListNode {
int val;
ListNode next;
}

class MyComparator<ListNode> implements Comparator<ListNode> {
@Override
public int compare(ListNode n1, ListNode n2) {
if (n1.val < n2.val)
return -1;
else if(n1.val == n2.val)
return 0;
else
return 1;
}
}

然而,编译器在 MyComparator 的声明行报告“类型参数 ListNode 正在隐藏类型 ListNode”,这会导致compare() 的重写实现中出现“val 无法解析”错误。我对这里的类型参数很困惑,有人能给我一些提示吗?

最佳答案

使用

class MyComparator implements Comparator<ListNode> {

而不是

class MyComparator<ListNode> implements Comparator<ListNode> {

关于java - 如何解决 "the type parameter ListNode is hiding the type ListNode"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16119564/

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