Java 泛型为何不能用于静态方法?


泛型是 Java 中的一个概念,你可以让一个类、接口和方法接受所有(引用)类型作为参数。换句话说,这个概念使用户能够动态地选择使用方法、类构造函数接受的引用类型。通过将一个类定义为泛型,你就使它成为类型安全的,即它可以在任何数据类型上起作用。

静态方法的泛型

我们可以在静态方法中使用泛型

 在线演示

public class GenericMethod {
   static <T>void sampleMethod(T[] array) {
      for(int i=0; i<array.length; i++) {
         System.out.println(array[i]);
      }
   }
   public static void main(String args[]) {
      GenericMethod obj = new GenericMethod();
      Integer intArray[] = {45, 26, 89, 96};
      sampleMethod(intArray);
      String stringArray[] = {"Krishna", "Raju", "Seema", "Geeta"};
      sampleMethod(stringArray);
      Character charArray[] = {'a', 's', 'w', 't'};
      sampleMethod(charArray);
   }
}

输出

45
26
89
96
Krishna
Raju
Seema
Geeta
a
s
w
t

我们不能在泛型类的类型参数前使用 static。

示例

 在线演示

class Student<T>{
   static 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();
   }
}

编译时错误

GenericsExample.java:3: error: non-static type variable T cannot be referenced from a static context
      static T age;
            ^
1 error

更新于:09-9-2019

4K+ 访问

启动你的 事业

通过完成课程获得认证

开始
广告