Java Generics - ไม่มีประเภทดั้งเดิม

การใช้ยาสามัญไม่สามารถส่งผ่านประเภทดั้งเดิมเป็นพารามิเตอร์ประเภทได้ ในตัวอย่างด้านล่างถ้าเราส่ง int primitive type ไปยัง box class คอมไพเลอร์ก็จะบ่น เพื่อลดสิ่งเดียวกันเราจำเป็นต้องส่งผ่านวัตถุจำนวนเต็มแทนประเภท int primitive

ตัวอย่าง

package com.tutorialspoint;

public class GenericsTester {
   public static void main(String[] args) {
      Box<Integer> integerBox = new Box<Integer>();

      //compiler errror
      //ReferenceType
      //- Syntax error, insert "Dimensions" to complete
      ReferenceType
      //Box<int> stringBox = new Box<int>();

      integerBox.add(new Integer(10));
      printBox(integerBox);
   }

   private static void printBox(Box box) {
      System.out.println("Value: " + box.get());
   }  
}

class Box<T> {
   private T t;

   public void add(T t) {
      this.t = t;
   }

   public T get() {
      return t;
   }   
}

สิ่งนี้จะให้ผลลัพธ์ดังต่อไปนี้ -

เอาต์พุต

Value: 10