Constraints on a Wildcard : Generic Parameters
时间:2015-06-28 21:20:57
收藏:0
阅读:149
public static void saveAll(LinkedList<? extends java.io.Serializable> list) {
}
public static void analyze(LinkedList<? super MyClass> list) {
}
原文:http://www.cnblogs.com/hephec/p/4606035.html
评论(0)