gpt4 book ai didi

java - 如何在Java中对类及其子类使用泛型?

转载 作者:行者123 更新时间:2023-12-02 10:04:20 25 4
gpt4 key购买 nike

我正在用泛型类编写这个简单的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/

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