gpt4 book ai didi

java - 自制泛型List类转换错误

转载 作者:太空宇宙 更新时间:2023-11-04 11:21:17 25 4
gpt4 key购买 nike

此代码出现转换错误,我不确定为什么会发生。

错误是:

List.java:131: error: incompatible types: Comparable cannot be converted to T
this.insertAtFront(remove.firstNode.data);

它出现在使用 List 中的 .data 作为 ListNode 的代码的每个部分中。

我标记了发生错误的行。

有什么想法吗?

public class List<T extends Comparable<T>> {

private ListNode firstNode;
private ListNode lastNode;
private String name;

public List(String listName){
name=listName;
firstNode=lastNode=null;
}

public T removeAt(int k) throws ListIndexOutOfBound {
List remove = new List();
T o;
if(k < 0 || k > checkSize()) throw new ListIndexOutOfBound();
for(int i = 0; i < k; i++){
try {
remove.insertAtFront(firstNode.data);
this.removeFromFront();
} catch (Exception e) {
while(!remove.isEmpty()){
this.insertAtFront(**remove.firstNode.data**);
remove.removeFromFront();
}
throw new ListIndexOutOfBound();
}
}
**o = firstNode.data;**
this.removeFromFront();
while(!remove.isEmpty()){
this.insertAtFront(**remove.firstNode.data**);
remove.removeFromFront();
}
return o;
}
}

这是 ListNode 类:

public class ListNode<T extends Comparable<T>> {

T data;
ListNode nextNode;

public ListNode(T o){
this(o,null);
}

public ListNode(T o, ListNode node){
data = o;
nextNode = node;
}

public T getObject(){
return data;
}
}

最佳答案

当你查看你的List类时,你会发现firstNode和lastNode的定义都不包含泛型类型信息!

所以将其更改为

ListNode<T> firstNode 

这个问题应该就会消失。创建“删除”列表时也是如此。

省略通用信息会创建所谓的原始类型。每次这样做时您都会收到警告。不要忽略该警告 - 只需修复所有使用原始类型的地方即可!

关于java - 自制泛型List类转换错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44870783/

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