Java Generics - พารามิเตอร์ Bounded Type

อาจมีบางครั้งที่คุณต้องการ จำกัด ประเภทของประเภทที่อนุญาตให้ส่งผ่านไปยังพารามิเตอร์ type ตัวอย่างเช่นวิธีการที่ดำเนินการกับตัวเลขอาจต้องการยอมรับเฉพาะอินสแตนซ์ของ Number หรือคลาสย่อยเท่านั้น นี่คือพารามิเตอร์ชนิดที่มีขอบเขต

ในการประกาศพารามิเตอร์ชนิดที่มีขอบเขตให้ระบุชื่อพารามิเตอร์ type ตามด้วยคีย์เวิร์ดขยายตามด้วยขอบเขตบน

ตัวอย่าง

ตัวอย่างต่อไปนี้แสดงให้เห็นว่าการขยายถูกใช้ในความหมายโดยทั่วไปหมายถึง "การขยาย" (เช่นเดียวกับในคลาส) หรือ "การใช้งาน" (เช่นเดียวกับอินเทอร์เฟซ) ตัวอย่างนี้เป็นวิธีการทั่วไปในการส่งคืนวัตถุที่เทียบเคียงได้ที่ใหญ่ที่สุดสามรายการ -

public class MaximumTest {
   // determines the largest of three Comparable objects
   
   public static <T extends Comparable<T>> T maximum(T x, T y, T z) {
      T max = x;   // assume x is initially the largest
      
      if(y.compareTo(max) > 0) {
         max = y;   // y is the largest so far
      }
      
      if(z.compareTo(max) > 0) {
         max = z;   // z is the largest now                 
      }
      return max;   // returns the largest object   
   }
   
   public static void main(String args[]) {
      System.out.printf("Max of %d, %d and %d is %d\n\n", 
         3, 4, 5, maximum( 3, 4, 5 ));

      System.out.printf("Max of %.1f,%.1f and %.1f is %.1f\n\n",
         6.6, 8.8, 7.7, maximum( 6.6, 8.8, 7.7 ));

      System.out.printf("Max of %s, %s and %s is %s\n","pear",
         "apple", "orange", maximum("pear", "apple", "orange"));
   }
}

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

เอาต์พุต

Max of 3, 4 and 5 is 5

Max of 6.6,8.8 and 7.7 is 8.8

Max of pear, apple and orange is pear