您可以在 Java 中创建一个泛型类型数组吗?


泛型是 Java 中的一个概念,您可以使用它来使类、接口和方法接受所有(引用)类型作为参数。换句话说,它使用户可以动态选择方法或类构造函数接受的引用类型。通过将类定义为泛型,您可以使其类型安全,即它可以作用于任何数据类型。

示例

 现场演示

class Student<T>{
   T age;
   Student(T age){
      this.age = age;
   }
   public void display() {
      System.out.println("Value of age: "+this.age);
   }
}
public class GenericsExample {
   public static void main(String args[]) {
      Student<Float> std1 = new Student<Float>(25.5f);
      std1.display();
      Student<String> std2 = new Student<String>("25");
      std2.display();
      Student<Integer> std3 = new Student<Integer>(25);
      std3.display();
   }
}

输出

Value of age: 25.5
Value of age: 25
Value of age: 25

泛型类型的数组

不,我们无法创建泛型类型对象的数组,如果您尝试这样做,将生成编译时错误。

示例

 现场演示

class Student<T>{
   T age;
   Student(T age){
      this.age = age;
   }
   public void display() {
      System.out.println("Value of age: "+this.age);
   }
}
public class GenericsExample {
   public static void main(String args[]) {
      Student<Float>[] std1 = new Student<Float>[5];
   }
}

编译时错误

GenericsExample.java:12: error: generic array creation
      Student<Float>[] std1 = new Student<Float>[5];
                              ^
1 error

更新于:2019-09-09

1K+ 次浏览

启动您的职业

通过完成课程获得认证

开始
Advertisement