上传者: dupei0624
|
上传时间: 2023-11-19 07:02:30
|
文件大小: 115KB
|
文件类型: DOC
一、 选择
1.给定下面的代码片段:
1) String str = null;
2) if ((str != null) && (str.length() > 10)) {
3) System.out.println("more than 10");
4) }
5) else if ((str != null) & (str.length() < 5)) {
6) System.out.println("less than 5");
7) }
8) else { System.out.println("end"); }
哪些行会导致错误?
A line 1 B line 2 C line 5 D line 8
2.下面哪种注释方法能够支持javadoc命令:
A /**...**/ B /*...*/ C // D /**...*/
3. 欲编写如下图的一个界面,用于显示用户指定的图像: 如果在区域A中只能放置一个AWT组件,从各组件的本来功能角度考虑,最好使用哪种组件:
A TextArea B Panel C Applet D Canvas
4. 界面如上题所示。若"Button1"的功能是:点击后弹出一个用于输入的界面,获取用户想要显示的图像文件名,则该界面最好····