內容
class Foo{
public final <T extends Foo> T cast() {
return (T) this;
}
List<?> list;
public <T> List<T> getList(){
return (List) list;