是否可以在Java中实例化Type-parameter <T>?

泛型是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

实例化type参数

我们用来表示对象类型的参数称为类型参数。简而言之,我们在<>之间的类声明中声明的参数。在上面的示例中,T是类型参数。

由于类型参数不是类或数组,因此无法实例化它。如果尝试这样做,将生成编译时错误。

示例

在下面的Java示例中,我们创建了一个名为Student的泛型类型,其中T是稍后在程序中尝试使用new关键字实例化此参数的泛型参数。

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();
      T obj = new T();
   }
}

编译时错误

编译时,上面的程序生成以下错误。

GenericsExample.java:15: error: cannot find symbol
      T obj = new T();
      ^
   symbol: class T
   location: class GenericsExample
GenericsExample.java:15: error: cannot find symbol
      T obj = new T();
                  ^
   symbol: class T
   location: class GenericsExample
2 errors