Java Generics - การลบประเภทขอบเขต

Java Compiler แทนที่พารามิเตอร์ชนิดในประเภททั่วไปด้วยขอบเขตหากใช้พารามิเตอร์ชนิดขอบเขต

ตัวอย่าง

package com.tutorialspoint;

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

      integerBox.add(new Integer(10));
      doubleBox.add(new Double(10.0));

      System.out.printf("Integer Value :%d\n", integerBox.get());
      System.out.printf("Double Value :%s\n", doubleBox.get());
   }
}

class Box<T extends Number> {
   private T t;

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

   public T get() {
      return t;
   }   
}

ในกรณีนี้คอมไพเลอร์ java จะแทนที่ T ด้วยคลาส Number และหลังจากการลบประเภทคอมไพเลอร์จะสร้าง bytecode สำหรับโค้ดต่อไปนี้

package com.tutorialspoint;

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

      integerBox.add(new Integer(10));
      doubleBox.add(new Double(10.0));

      System.out.printf("Integer Value :%d\n", integerBox.get());
      System.out.printf("Double Value :%s\n", doubleBox.get());
   }
}

class Box {
   private Number t;

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

   public Number get() {
      return t;
   }   
}

ในทั้งสองกรณีผลลัพธ์จะเหมือนกัน -

เอาต์พุต

Integer Value :10
Double Value :10.0