class Listtest
{
public static void main(String[] args) {
List<Integer> list1 = new ArrayList<Integer>();//在dos中错误提示是类型List不带有参数,这是怎么回事?
list1.add(21);
List<String> list2 = new ArrayList<String>();
list2.add("asdf");
System.out.println(list1.getClass() == list2.getClass());//上面老是提示错误所以这没运行到,想问一下这个是不是返回的是false
}
} |
|