java泛型之萬用字元的使用。

suyu_yuan發表於2016-07-01

程式碼如下:

package test;
/** 
* @author : suyuyuan
* @date :2016年7月1日 下午3:13:41 
* @version 1.0 
*/
class Info<T>{
private T key;


public T getKey() {
return key;
}


public void setKey(T key) {
this.key = key;
}
@Override
public String toString() {
return this.getKey().toString();
}
}
public class GenTest {
public static void main(String[] args) {
Info<String> i = new Info<String>();
i.setKey("Hello World!");
tell(i);
}

public static void tell(Info<?> i){     // 此處使用了萬用字元    ?
System.out.println(i);
}
}



相關文章