62,635
社区成员




public class Test {
public static void main(String[] args) {
List<String> a = null;
List<Object> bNew = a;
}
}
public static void main(String[] args) {
List<String> a = null;
List<Object> b = convert(a, Object.class);
}
@SuppressWarnings("unchecked")
public static <T> List<T> convert(List<?> list, Class<T> c) {
return (List<T>)list;
}
String a = "a";
Integer b = 1;
// List<?> bNew = a;
List<Object> t = new ArrayList<Object>();
t.add(a);
t.add(b);
for(Object m : t) {
System.out.println(m);
}
}
这个又有什么概念在里面呢? 求各位大师指点! String a = null;
Object bNew = a;
List<String> a = null;
List<?> bNew = a;