按照約定,型別引數名稱命名為單個大寫字母,以便可以在使用普通類或介面名稱時能夠容易地區分型別引數。以下是常用的型別引數名稱列表 -
以下範例將展示上述概念的使用。
使用您喜歡的編輯器建立以下java程式,並儲存到一個檔案:TypeParameterNamingConventions.java 中,程式碼如下所示 -
package com.yiibai;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class TypeParameterNamingConventions {
public static void main(String[] args) {
MyBox<Integer, String> box = new MyBox<Integer, String>();
box.add(Integer.valueOf(199), "Hello World");
System.out.printf("Integer Value :%d\n", box.getFirst());
System.out.printf("String Value :%s\n", box.getSecond());
Pair<String, Integer> pair = new Pair<String, Integer>();
pair.addKeyValue("1", Integer.valueOf(100));
System.out.printf("(Pair)Integer Value :%d\n", pair.getValue("1"));
CustomList<MyBox> list = new CustomList<MyBox>();
list.addItem(box);
System.out.printf("(CustomList)Integer Value :%d\n", list.getItem(0)
.getFirst());
}
}
class MyBox <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;
}
}
class Pair<K, V> {
private Map<K, V> map = new HashMap<K, V>();
public void addKeyValue(K key, V value) {
map.put(key, value);
}
public V getValue(K key) {
return map.get(key);
}
}
class CustomList<E> {
private List<E> list = new ArrayList<E>();
public void addItem(E value) {
list.add(value);
}
public E getItem(int index) {
return list.get(index);
}
}
執行上面範例程式碼,將得到以下結果 -
Integer Value :199
String Value :Hello World
(Pair)Integer Value :100
(CustomList)Integer Value :199