假设定义了变量LIST="one two three four",以下能对LIST中的元素进行循环遍历的是?
A: for LIST
B: for VAR in LIST
C: for VAR in $LIST
D: for $LIST ->; $VAR
A: for LIST
B: for VAR in LIST
C: for VAR in $LIST
D: for $LIST ->; $VAR
举一反三
- 定义一个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>();
- Collections中根据指定 Comparator 产生的顺序对指定List集合元素进行排序的方法是 A: void reverse(List list) B: void shuffle(List list) C: void sort(List list) D: void swap(List list, int i, int j) E: void sort(List list, Comparator c)
- 列表list = [1,2,3,4,5],下列选项中不能访问list末尾元素语句的是( )。 A: list[4] B: list[-1] C: list[len(list)-1] D: list.tail()
- 定义一个List对象list,使用ArrayList的构造方法进行初始化,并且要求list中必须全部存放Integer类型的对象,以下语句正确的是( )。 A: List list = new ArrayList<Integer>(); B: List list = new ArrayList (); C: List<Integer> list = new ArrayList<Integer>(); D: ArrayList<Integer> list = new List<Integer>();
- 下列哪种方式创建的列表框允许选择多个列表项(<br/>)。 A: List list = new List() B: List list = new List(4) C: List list = new List(4, false) D: List list = new List(4, true)