作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在用泛型类编写这个简单的java程序。但是,我在测试程序时遇到了问题:“Student”类扩展了“Person”类。创建 ArrayBox (我的通用类)时,我无法在创建 ArrayBox 时使用 Student 类
我看到错误:“java:类型参数 com.company.Student 不在类型变量 T 的范围内”
Student 类扩展了 Person 类。我尝试使其实现 Comparable,但随后出现错误,告诉我它不能从不同类型继承(扩展 person 并实现 C)
我试图让它扩展 Comparable 但它似乎也不起作用。
这是向我显示错误的部分:
ArrayBox<Student> bst = new ArrayBox<>(1);
这是 ArrayBox 声明:
public class ArrayBox<T extends Comparable<T>> {
人员类别声明:
public class Person implements Comparable<Person>{
学生类(class)声明:
public class Student extends Person{
我已经在网上搜索过,但我仍然不明白我能做些什么来实现这项工作。这个问题很容易解决(或者更确切地说可以避免)通过使用:
ArrayBox<Person> bst = new ArrayBox<>(1);
而不是:
ArrayBox<Student> bst = new ArrayBox<>(1);
但我真的需要第二种形式的工作。应该如何声明“Student”类才能使此代码正常工作?
抱歉,如果我的问题看起来很困惑,因为这是我第一次在这里提问。
最佳答案
一种可能的方法是将 ArrayBox 签名稍微更改为:
public class ArrayBox<T extends Comparable<? super T>>
以上将使 ArrayBox 对 T 的扩展开放。
关于java - 如何在Java中对类及其子类使用泛型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55414314/
我是一名优秀的程序员,十分优秀!