版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、精选优质文档-倾情为你奉上JavaSE程序代码阅读题()1. 阅读下面的代码,然后写出程序运行结果。 public class Test2 static boolean foo(char c) System.out.print (c); return true; ) public static void main(String argv) int i=0; for (foo(A)j foo(B)&&(i<2);foo(C) i+; foo(D);2. 如下程序代码 a=0;c=0; do -c; a=a-1 while(a>0); 循环结束后,c的值是()3. 给出
2、下面的代码:if(x>0)System.out.println("first"),)else if(x>-3)System.out.println("second");)elseSystem.out.println("third");)x的取值在什么范围内时将打印字符串”second”4. 阅读下面程序,写出其输出:class PersonPerson()System.out.println("1");public void printValue(int i,int j)System.out.print
3、ln("2");public void printValue(int i)System.out.println("3");public class Teacher extends PersonTeacher()System.out.println("4");5. 下面程序有什么问题,请指正。public class Personint arr = new int ;public static void main(String a)6. 写出下列代码的输出结果。public class Test publi
4、c int aMethod() static int i = 0; i+;return i; public static void main (String args) Test test = new Test();test.aMethod();int j = test.aMethod();System.out.println(j)
5、;7. 下列代码编译运行结果。public class Demo public int add(int a,int b) try return a+b;
6、catch(Exception e) System.out.println(“catch 语句块”); finally System.out.println(“finally 语句块”);
7、160; return 0; public static void main(String args) Demo demo = new Demo
8、(); System.out.println(“和是:”+demo.add(9,34); 8. 下列代码编译运行结果。 public static void main(String args) try String name = null; System.out.println(name.length(); catch (SQLException e) System.out.println(“有异常出现”); finally System.out.prin
9、tln(“执行结束”);9. 下列代码编译运行结果。 public class Animal public Animal() System.out.println(“I am an animal”);public class Cat extends Animal public Cat () System.out.println(“I am a cat”);public class Test public static void main (String args) Cat cat = new Cat();10. 下列代码编译运行结果。public class Person private St
10、ring name; public Person() name = “小明”;public Person(String name) this(); System.out.println(“大家好,我是” + );public static void main(String args) Person person = new Person(“小红”);11. 下列代码编译运行结果。 public static void main(String args) int i= 3; do if (i-%2 = 0) System.out.println(i); break;System
11、.out.println(i); while (i> 0);12. 下列代码编译运行结果。public class Vehicle public void run() System.out.println(“Vehicle is running”);public class Car extends Vehicle public void run() System.out.println(“Car is running”);public static void main(String args) Vehicle vehicle = new Car(); vehicle.run();13.
12、下列代码编译运行结果。double i = 25;int j = 5;int result = i / j;System.out.println(result);14. 下列代码编译运行结果。public class Astatic System out printle(“a”) public A()System out printle(“b”)public class B extends Astatic System out printle(“1”) public B()System out printle(“2”)public class Test public static void m
13、ain(String args)A ab = new B() ; ab = new B(); 15. 下列代码编译运行结果。import java.util.HashSet;import java.util.Set;public class ShortSet public static void main (String ars) Set<Short> s = new HashSet<Short>(); for(Short i=0;i<100;i+) s.add(i); s.remove(i-1); System.out.println(s.size(); 16.
14、 下列代码编译运行结果。int total = 0; for ( int i = 0; i < 4; i+ )if ( i = 1) continue; if ( i = 2) break;
15、; total += i; 17. 下列代码输入2时的运行结果。public int getValue(int i) int result = 0;
16、60; switch (i) case 1: result = result + i;
17、160; case 2: result = result + i * 2;
18、160; case 3: result = result + i * 3; return result; 1
19、8. 给出以下代码,请问插入什么语句后可以依次打印输出数组中的每个元素? class Example public static void main(String args) int arr=new int4; arr0=new int4; arr1=new int3; arr2=new int2; arr3=new int1; for(int n=0;n<4;n+) System
20、.out.println(/*插入语句处*/); 19. 下列代码编译运行结果。 public static void main(String args) int i= 3; do if (i-%2 = 0) System.out.println(i); break;System.out.println(i); while (i> 0);20. 下列代码编译运行结果。public class Testpublic static changeStr(String str)str="jettech"public static void m
21、ain(String args)String str="welcome"changeStr(str);System.out.println(str);21. 下列代码编译运行结果。String a = "a";String b = "b";String c = "a'+"b";String d = a+b;System.out.print(a="a");System.out.print(c="ab");System.out.print(d=c);System
22、.out.print(new String("a")+b=c);22. 下列代码编译运行结果。public class SwitchTest public static void main(String args) System.out.println(switchlt(4);public static int switchlt(int x) int j=1;switch (x) case 1:j+;case 2:j+;case 3:j+;case 4:j+;case 5:j+;default:j+;return j+x;23. 下列代码编译运行结果。public clas
23、s HasStatic private static int x =100; public static void main(String args) HasStatic hs1 = new HasStatic();hs1.x+;HasStatic hs2 = new HasStatic();hs2.x+;hs1 = new HasStatic();hs1.x+;HasStatic.x-;System.err.println("x="+x);24. 下列代码编译运行结果。public class Example public static void main(String
24、args) int i,j;for ( i=0,j = 0; i+j< 20; +i,j+=i-) System.out.println(i+j);25. 下列代码编译运行结果。public class Apublic static void main(String args)String A = "A"String B = "A"String c = "new String("A");System.out.print(a=b);System.out.print("");System.out.pri
25、nt(a=c);System.out.print("");System.out.print(a.equals(c);System.out.print("");26. 下列代码编译运行结果。public class Apublic A()System.out.print("A"); public static void main(String args) A a= new A(); B b=new B(); class B extends Apublic B()System.out.print("B");27. 下列
26、代码编译运行结果。public class Apublic String method1()tryif(true)throw new Exception();System.out.print("D");return "A"cactch(Exception e)System.out.print("E");return "B"finalSystem.out.print("F"); public static void main(String args) System.out.print(new A(
27、).method1(); 28. 下列代码编译运行结果。public class TestTjsinfoString str = new String("good");char ch = 'w','e','l','l'public static void main(String args) TestTjsinfo ex =new TestTjsinfo();ex.change(ex.str,ex.ch);System.out.print(ex.str+"and");System.out.pr
28、int(ex.ch);public void change (String str,char ch)str ="test ok"ch0='g'29. 下列代码哪几行会出错。1) public void test()2) int i,j,k;3) i=50;4) while(i>0)5) j=i=2;6) System.out.print("The value of j is "+j);7) k=k+1;8) i-;9) 10) 30. 下列代码编译运行结果。public class MyClass static int i; pub
29、lic static void main(String argv) System.out.println(i); 31. 下列代码编译运行结果。public class Test3 public static void main(String args) System.out.print(100%3); System.out.print(","); System.out.println(100%3.0); 32. 下列代码编译运行结果。void complicatedExpression() int x=20, y=30; boolean b; b=x>50&
30、&y>60|x>50&&y<-60|x<-50&&y>60|x<-50&&y<-60; System.out.println(b); 33. 以下程序的功能是:求n!。请在下列程序中填入正确的语句 class FactorialTest static long Factorial(int n) if(n=1) return 1; else _ public static void main(String a) int n=8; System.out.println(n+"!="
31、+Factorial(n); 下列代码编译运行结果。34. 下列代码编译运行结果。class Parent void printMe() System.out.println("parent"); class Child extends Parent void printMe() System.out.println("child"); void printall() super.printMe(); this.printMe(); printMe(); public class Test_this public static void main(Str
32、ing args) Child myC=new Child(); myC.printall(); 35. 下列代码编译运行结果。public class Short public static void main(String args) StringBuffer s=new StringBuffer("Hello"); if(s.length()>5)&&(s.append("there").equals("False"); System.out.println("value is "+s)
33、; 36. 下列代码编译运行结果。String str1 ="hello"String str2="he"+new String("llo");System.err.println(str1=str2);37. 下列代码编译运行结果。public class NULLpublic static void haha()System.out.print("haha");public static void main(String args) (NULL)null).haha();38. 下列代码编译运行结果。publi
34、c static void main(String args)Thread t = new Thread()public void run()pong();t.run();System.out.print("ping");static void pong()System.out.print("pong");39. 下列代码编译运行结果。public class CollectionClassifilerpublic static String classify (Set s)return"Set"public static Strin
35、g classify ( l)return"List"public static String classify (Collection c )return"Unknown Collection"public static void main(String args)Collection test=new Collectionnew HashSet(),/A Setnew ArrayList(),/ A Listnew HashMap().values()/Neither Set nor List;for(inti =0;i<test.length
36、;i+)System.out.print(classify(testi);40. 下面这段程序,当输入为2时返回值是多少?public static int count (int i) int result =0;switch (i) case 1:result = result + i ;case 2:result =result + i*2;case 3: result = result+i*3return result;41. 下列代码编译运行结果。String s=new String(“abcdefg”);for(int i=0;i<s.length();i+=2)System
37、.out.print(s.charAt(i);42. 下列代码运行后foo的值是多少。int index = 1;Boolean test = new Boolean3;Boolean foo = test index;43. 下列代码编译运行结果。public class Testpublic static void main(String arg)int i= 5;doSystem.out.println("i");while(-i>5);System.out.println("finished");44. 下列代码编译运行结果。public
38、class HasStatic private static int x =100; public static void main(String args) HasStatic hs1 = new HasStatic();hs1.x+;HasStatic hs2 = new HasStatic();hs2.x+;hs1 = new HasStatic();hs1.x+;HasStatic.x-;System.err.println("x="+x);45. 下列代码编译运行结果。import java.io.*;public class B public static vo
39、id main(string args) int i=12; System.out.println(i+=i-=i*=i);46. 下列代码编译运行结果。 public class Test public int method() static int x = 0; x+; return x; public static void main(String args) Test test = new Test(); test.method(); int y = test.method(); System.out.println(y); 47. 下列代码编译运行结果。public class Te
40、stpublic static void main(String args) System.out.println(6 + 6 + “aa” + 6 + 6);48. 传递4,0来运行下列代码中的方法divide(int a,int b),结果是()public void divide(int a, int b) try int c = a / b; catch (Exception e)
41、;System.out.print("Exception"); finally System.out.println("Finally"); 49. 排查错误,请查看下列每题是否有错误并且说明错误原因1)abstract class TestUser private String name; public abstract boolean isStupidName(String name) 2)public class CheckPasswordprivate void authentic
42、ate()private String s=""int 1= s.length()3)abstract class uploadFileprivate abstract String upload();4)public class ProcessDatapublic int addData(final int x)return +x;5)public class ProcessDatapublic int addData(final int x)return +x;public class ProcessDatapublic static void main(String
43、args) Other o=new Other(); new Something().addOne(o);public void addData(final Other o)o.i+;class Otherpublic int i;6)class TestClassint i;public void doSomething()System.out.print("i="+i);7)class TestClassfinal int i;public void doSomething()System.out.print("i="+i);8)public cla
44、ss Somethingpublic static void main(String args) something s=new Something();System.out.print("s.doSomething() return"+doSomething();public String doSomething()return "Do something."9)public class TestClasspublic void submit()String str = new String"china","usa&quo
45、t;System.out.print(str0);str2="england"System.out.print(str2);10)public class TestFilepublic void readFile()InputStream is = this.getClas().getResourceAaStream("/config/perties");int len =is.available();byte templates= new bytelen;is.read(templates);50. 下列代码编译运行结果。class He
46、lloA public HelloA() System.out.println("HelloA");System.out.println("I'm A class");static System.out.println("static A");public class HelloB extends HelloA public HelloB() System.out.println("HelloB");System.out.println("I'm B class");static
47、 System.out.println("static B");public static void main(String args) new HelloB();51. 下列代码编译运行后,哪个字段会被保存到文件中? class Shape public String name;class Circle extends Shape implements Serializableprivate float radius;transientint color;public static String type = "Circle"52. 在执行new Ch
48、ild("mike")的时候都有哪些构造方法被顺序调用?class People String name;public People() System.out.print(1); public People(String name) System.out.print(2); = name;class Child extends People People father;public Child(String name) System.out.print(3); = name;father = new People(name + "
49、;:F");public Child() System.out.print(4); 53. getCustomerInfo()方法如下,try中可以捕获三种类型的异常,如果在该方法运行中产生了一个IOException,将会输出什么结果?public void getCustomerInfo() try / do something that may cause an Exception catch (java.io.FileNotFoundException ex) System.out.print("FileNotFoundException!"); catch (java.io.IOException ex) System.out.print("IOException!"); catch (java.lang.Exception ex) System.out.print("Exception!"); 54. 下列代码编译运行结果。String s1 ="0.5",s2="12
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 运营管理大专
- 高中安全教育课件教学
- 新员工个人工作总结精彩7篇
- 自我定位与规划方案
- 小学生母亲节演讲稿范文
- 小学开学典礼校长演讲稿集锦五篇
- 学校安全生产月
- 护理的课件教学课件
- 安全文化理念
- 物流经理年度工作总结
- GB/T 26411-2010海水中16种多环芳烃的测定气相色谱-质谱法
- GB/T 10560-2017矿用焊接圆环链用钢
- 8.2 重力势能 课件(共29张PPT)
- 低成本自动化的开展与案例课件
- FMEA-培训教材-汽车fmea培训课件
- 《项目进度管理研究文献综述》
- 信用风险加权资产计量与管理手册课件
- 光伏项目试验报告
- 小学“双减”作业设计:小学数学四年级上册作业设计案例
- 知识产权法(英文) Intellectual Property Right Law课件
- 综合评分法评分表(建设工程)
评论
0/150
提交评论