使用comboBox控件(下拉列表框)的下面哪个属性,可以获取用户选择的列表项目?
A. getSelectedIndex( )
B. getSelectedItem( )
C. getSelectedObjects( )
D. getItemAt(0)
下面哪些数据类型是Java中的集合?
ArrayList
B. Vector
C. Stack
D. HashSet
下面代码要求将Person类对象存储到Vector向量集合中,请填空。Vector<【填空1】> persons = new Vector<【填空1】>( );Person p = new Person("张三",51);persons.【填空2】(p); //将张三添加到persons集合
comboBox控件的getSelectedItem()属性的返回值是Object,需使用强制类型转换,将数据转换成列表项对应的实际类型后,再使用。
A. 对
B. 错