作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图通过接口(interface)在 Java 中实现简单队列,但出现错误:
Error:(9, 17) java: name clash: enqueue(T) in main.QueueImpl and enqueue(java.lang.Object) in main.Queue have the same erasure, yet neither overrides the other
这是我的代码:
界面:
public interface Queue<T> {
void enqueue(T o);
T dequeue();
int size();
}
实现:
public class QueueImpl<T> implements Queue {
LinkedList<T> queue = new LinkedList<>();
@Override
public void enqueue(T o) {
queue.add(o);
}
@Override
public T dequeue() {
return queue.poll();
}
@Override
public int size() {
return queue.size();
}
}
实现入队方法有什么问题?
最佳答案
更改您的实现以将泛型传递到接口(interface)。就像,
public class QueueImpl<T> implements Queue<T> {
事实上,它知道 Queue
是通用的,但它被视为原始类型。
关于java - 从 Java 接口(interface)实现泛型方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51071809/
我是一名优秀的程序员,十分优秀!