下列说法中错误的一项是( )
(A)TextArea可以显示多行多列的文本
(B)TextArea可以显示单行多列的文本
(C)在单行文本输入区中按下Enter键会触发ActionEvent事件
(D)单行文本区可以通过方法setEditable(Boolean)设置只读属性,但是多行文本区却不能
参考答案
继续答题:下一题
更多java基础知识试题
- 1以下( )类不属于字符流类
- 2已知如下代码:1 class Example{2 String str;3 public Example(){4 str= "example";5 }6 public Example(String s){7 str=s;8 }9 }10 class Demo extends Example{11 }12 public class Test{13 public void f (){14 Example ex = new Example("Good");15 Demo d = new Demo("Good"); } }哪句语句会导致错误?
- 3以下程序段的输出是什么 ?int[] num7 = {1, 3, 5, 2, 8, 9, 5, 0};int x7 = num7[0];for (int i = 0; i <= num7.length-1; i++){ if(num7[i] < x7) { x7 = num7[i]; }}System.out.println(x7);
- 4声明一个类的方法是最终的,即不能被其子类覆盖该方法,应使用( )修饰符
- 5变量命名规范说法正确的是( )