Java Generics - พารามิเตอร์หลายประเภท
คลาสทั่วไปสามารถมีพารามิเตอร์ประเภทหลายตัวได้ ตัวอย่างต่อไปนี้จะแสดงแนวคิดที่กล่าวถึงข้างต้น
ตัวอย่าง
สร้างโปรแกรม java ต่อไปนี้โดยใช้โปรแกรมแก้ไขที่คุณเลือก
GenericsTester.java
package com.tutorialspoint;
public class GenericsTester {
   public static void main(String[] args) {
      Box<Integer, String> box = new Box<Integer, String>();
      box.add(Integer.valueOf(10),"Hello World");
      System.out.printf("Integer Value :%d\n", box.getFirst());
      System.out.printf("String Value :%s\n", box.getSecond());
      Box<String, String> box1 = new Box<String, String>();
      box1.add("Message","Hello World");
      System.out.printf("String Value :%s\n", box1.getFirst());
      System.out.printf("String Value :%s\n", box1.getSecond());
   }
}
class Box<T, S> {
   private T t;
   private S s;
   public void add(T t, S s) {
      this.t = t;
      this.s = s;
   }
   public T getFirst() {
      return t;
   } 
   public S getSecond() {
      return s;
   } 
}สิ่งนี้จะให้ผลลัพธ์ดังต่อไปนี้
เอาต์พุต
Integer Value :10
String Value :Hello World
String Value :Message
String Value :Hello World