A.for(Integeri:al)
B.for(i:al)
C.for(al)
D.forEach(Integeri:al)
第1题:
2、创建一个ArrayList集合并指定泛型为Integer类型,添加10个元素,然后遍历ArrayList集合,输出表中序号为奇数的元素。
第2题:
不能使用普通的for循环语句遍历数组中的所有元素
第3题:
不能使用普通的for循环语句遍历数组中的所有元素。
第4题:
创建一个只能存放String的泛型ArrayList的语句是哪项?
A.ArrayList<String> al=new ArrayList<>();
B.ArrayList al=new ArrayList<>();
C.ArrayList al=new ArrayList();
D.ArrayList al=new List();
第5题:
定义一个List对象list,使用ArrayList的构造方法进行初始化,并且要求list中必须全部存放Integer类型的对象,以下语句正确的是()。
A.List list = new ArrayList ();
B.List list = new ArrayList<Integer>();
C.List<Integer> list = new ArrayList<Integer>();
D.ArrayList<Integer> list = new List<Integer>();