若通过List
list = new List(); 创建的列表框,如何获得该列表框中当前选中的列表项(
)。
A: list.getSelectedIndex()
B: list. getSelectedItem( )
C: list. getItem (i)
D: list. select (i)
list = new List(); 创建的列表框,如何获得该列表框中当前选中的列表项(
)。
A: list.getSelectedIndex()
B: list. getSelectedItem( )
C: list. getItem (i)
D: list. select (i)
举一反三
- 下列哪种方式创建的列表框允许选择多个列表项(<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)
- The return result of the list generation expression is a list.
- 下列选项中,不能创建列表的语句是。 A: list=(1,2,3) B: list=[2] C: list=[1,2,3] D: list=[1,"mathmatics",98]
- In a singly linked list which operation depends on the length of the list.( ) A: Interchange the first two elements of the list B: Delete the first element of the list C: Add an element before the first element of the list D: Delete the last element of the list
- 创建列表list=[1,2,3,4,5],观察下列选项,哪一个选项可以对列表list进行访问并且返回值为[1,2,3]? A: list[1:3] B: list[0:4] C: list[0:3] D: list[1:4]