- 1、本文档共28页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
JAVA复习题201003答案,java复习题答案,生理学复习题及答案,教育学复习题及答案,数据库复习题及答案,统计学复习题及答案,数学必修五复习题答案,数学必修10e0四复习题答案,工程力学复习题及答案,理论力学复习题及答案
多选题
判断题
测试
题目
选项
以下代码:
11. static void test() throws RuntimeException{
12. try{
13. System.out.print(test );
14. throw new RuntimeException();
15. }
16. catch(Exception ex){ System.out.print(exception );}
17. }
18. public static void main(String[] args){
19. try{test();}
20. catch(RuntimeException ex){System.out.print(runtime );}
21. System.out.print(end );
22. }
运行结果是?
test end
编译错误
test runtime end 12
test exception end
A Throwable is thrown by main at runtime.
以下代码:
33. try{
34. //some code here
35. }catch(NullPointerException el){
36. System.out.print(a);
37. }catch(Exception e2){
38. System.out.print(b);
39. }finally{
40. System.out.print(c);
41. }
如果34行处抛出异常,输出的结果可能是?
a
b
c
ac
abc
以下代码:
11. static void test(){
12. try{
13. String x = null;
14. System.out.print(x.toString() + );
15. }
16. finally{System.out.print(finally );}
17. }
18. public static void main(String[] args){
19. try{test();}
20. catch(Exception ex){System.out.print(exception );}
21. }
运行的结果是?
null
finally
null finally
finally exception
假定当前目录是空的并且有读和写的权限,执行以下代码:
11. import java.io.*;
12. public class DOS{
13. public static void main(String[] args){
14. File dir = new File(dir);
15. dir.mkdir();
16. File f1 = new File(dir, f1.txt);
17. try{
18. f1.createNewFile();
19. }catch(IOException e){;}
20. File newDir = new File(newDir);
21. dir.renameTo(newDir);
22. }
23. }
以下哪个语句是正确的?
The file system has a new empty directory named dir.
The file system has a new empty directory named newDir.
The file system has a directory named dir, containing a file f1.txt.
The file system has a directory named newDir, containing a file f1.txt.
以下代码:
1. public class Boxer1{
2. Integer i
3. int x;
4. public Boxer1(int y){
5. x = i + y;
6. System.out.println(x);
7. }
8. public static void main(String[] args){
9. new Boxer1(new Integer(4));
10. }
11. }
运行结果是?
The value 4 is printed at the command line.
Compilation fails because of an error in line 5.
Compilation fails because of an error in line 9.
A NullPointerException
您可能关注的文档
- H2CO与双卤分子间卤键的电子密度分析.pdf
- hERGK+ionchannelbinding钾离子通道结合分析.pdf
- HeavyDutyTruckCoolingSystemDesignUsingCoSimulation_重型汽车冷却系统设计中的协同仿真应用0.doc
- HH2型土壤湿度计测定土壤含水量的标定研究.pdf
- HFJ13净化空调机组的研制.doc
- hb076.利用单摆测定重力加速度.doc
- HI13串列加速器AMS交替注入系统研制.pdf
- Hibernate中的基础配置.doc
- HI13串列加速器核孔膜辐照专用束流线的研制.pdf
- HibernateTemplate的find方法.doc
文档评论(0)