语句:JTextField=new JTextField(8);,语句中的8表示文本框的()。
A、列宽
B、所显示的字符串
C、行高
D、编号
A、列宽
B、所显示的字符串
C、行高
D、编号
A、JTextField b = new JtextField("关闭"); B、JTextArea b = new JTextArea("关闭"); C、JButton b = new Jbutton("关闭"); D、JCheckbox b = new Jcheckbox("关闭");
A、new Inner(); // At line 3 B、new Inner(); // At line 8 C、new o.Inner(); // At line 8 D、new Outer.Inner(); // At line 8
A、int a[ ][ ] = new int[][]; B、int a[10][10] = new int[][]; C、int a[ ][ ] = new int[10][10]; D、int [ ][ ]a = new int[10][10]; E、int [ ]a[ ] = new int[10][10];
A、TextField b = new TextField(“关闭”); B、Label b = new Label(“关闭”); C、Checkbox b = new Checkbox(“关闭”); D、Button b = new Button(“关闭”);