gpt4 book ai didi

java - 不兼容类型对象无法转换为 t,其中 t 是类型变量

转载 作者:行者123 更新时间:2023-12-01 07:23:56 25 4
gpt4 key购买 nike

我收到不兼容的类型:对象无法转换为 T,其中 T 是类型变量:T 扩展了类 Stack 中声明的对象。
你能帮忙吗,我不知道为什么会这样,方法 pop() 和 getData() 是同一类型 T...
这是缩短的代码。

public class Stack<T> {
Node head;

public T pop() {
return head.getData(); //the error is on this line
}

private class Node <T> {
private final T data;
private Node next;

private Node(T data, Node next) {
this.data=data;
this.next=next;
}

private T getData() {
return data;
}
}
}

最佳答案

必须是Node<T> head 。您忘记添加类型参数。

关于java - 不兼容类型对象无法转换为 t,其中 t 是类型变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29309727/

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