Java Generics - ไม่มีฟิลด์คงที่
การใช้ข้อมูลทั่วไปไม่อนุญาตให้พารามิเตอร์ประเภทเป็นแบบคงที่ เนื่องจากตัวแปรแบบคงที่ถูกแบ่งใช้ระหว่างอ็อบเจ็กต์ดังนั้นคอมไพเลอร์จึงไม่สามารถระบุประเภทที่จะใช้ พิจารณาตัวอย่างต่อไปนี้หากอนุญาตให้ใช้พารามิเตอร์ประเภทคงที่
ตัวอย่าง
package com.tutorialspoint;
public class GenericsTester {
public static void main(String[] args) {
Box<Integer> integerBox = new Box<Integer>();
Box<String> stringBox = new Box<String>();
integerBox.add(new Integer(10));
printBox(integerBox);
}
private static void printBox(Box box) {
System.out.println("Value: " + box.get());
}
}
class Box<T> {
//compiler error
private static T t;
public void add(T t) {
this.t = t;
}
public T get() {
return t;
}
}
เนื่องจาก stringBox และ integerBox ทั้งสองมีตัวแปรชนิดคงที่ที่จ้องมองจึงไม่สามารถระบุประเภทได้ ดังนั้นจึงไม่อนุญาตให้ใช้พารามิเตอร์ประเภทคงที่