30道Java 1.4模拟经典题(2)

16. What results from the following code?
1.class MyClass
2.{
3.void myMethod(int i) {System.out.println(”int version”);}
4.void myMethod(String s) {System.out.println(”String version”);}
5.public static void main(String args[])
6.{
7.MyClass obj = new MyClass();
8.char ch = ‘c';
9.obj.myMethod(ch);
10.}
11.}
A.Line 4 will not compile as void method can’t e overridden.
B.An exception at line 9.
C.Line 9 will not compile as there is no version of myMethod which takes a char as argument.
D.The code compiles and produces output: int version
E.The code compiles and produces output: String version
D is correct. A is incorrect as void methods can be overridden without any problem. B is incorrect as char ch declaration is valid. C is incorrect as char type in java is internally stored as integer and there is a method which takes int as an input. D is correct, on line 9 char ch is widened to an int and passed to int version of the myMethod(). E is incorrect as int version of myMethod() is called.
17. What is the result when you compile and run the following code?
public class ThrowsDemo { 
     static void throwMethod() { 
             System.out.println(”Inside throwMethod.”); 
             throw new IllegalAccessException(”demo”); 
     }
     public static void main(String args[]) { 
          try { 
                throwMethod(); 
          } catch (IllegalAccessException e) { 
                System.out.println(”Caught ” + e); 
          } 
      } 
}
A.compile error
B.runtime error
C.compile successfully, nothing is printed.
D.inside throwMethod followed by caught: java.lang.IllegalAccessException: demo
A is correct. Exception :java.lang.IllegalAccessExcption must be caught or placed in the throws clause of the throwMethod(), i.e. the declaration of throwMethod() be changed to “static void throwMethod() throws IllegalAccessExcption”. Thus compilation error will occur.
18. What will be printed when you execute the following code?
class X {
Y b = new Y();
   X() {
System.out.print(”X”);
}
}
class Y {
    Y() {
System.out.print(”Y”);
}
}
public class Z extends X {
      Y y = new Y();
       Z() {
System.out.print(”Z”);
}
       public static void main(String[] args) {
            new Z();
       }
}
A.Z
B.YZ
C.XYZ
D.YXYZ
D is correct. A difficult but a fundamental question, please observe carefully. Before any object is constructed the object of the parent class is constructed(as there is a default call to the parent's constructor from the constructor of the child class via the super() statement). Also note that when an object is constructed the variables are initialized first and then the constructor is executed. So when new Z() is executed , the object of class X will be constructed, which means Y b = new Y() will be executed and “Y” will be printed as a result. After that constructor of X will be called which implies “X” will be printed. Now the object of Z will be constructed and thus Y y = new Y() will be executed and Y will be printed and finally the constructor Z() will be called and thus “Z” will be printed. Thus YXYZ will be printed.
19. What will happen when you attempt to compile and run the following code snippet?
Boolean b = new Boolean(”TRUE”);   //不区分大小写
if(b.booleanValue()){
System.out.println(”Yes : ” + b);
}else{
System.out.println(”No : ” + b);
}
A.The code will not compile.
B.It will print ?C Yes: true
C.It will print ?C Yes: TRUE
D.It will print ?C No: false
E.It will print ?C No: FALSE
B is the correct choice. The wrapper class Boolean has the following constructor -public Boolean(String s) It allocates a Boolean object representing the value true if the string argument is not null and is equal, ignoring case, to the string “true”. Otherwise, allocate a Boolean object representing the value false.E.g.
new Boolean(”TRUE”) produces a Boolean object that represents true.
new Boolean(”anything”) produces a Boolean object that represents false.
The internal toString() representation of this object produces the boolean value string in lower case, hence it prints “Yes : true” instead of “Yes : TRUE”.
20. What is the result when you compile and run the following code?
public class Test{
public void method(){
for(int i = 0; i < 3; i++) {
       System.out.print(i);
       }
       System.out.print(i);
}
}
A. 0122
B. 0123
C. compile error
D. none of these
C is correct. The code on compilation will give compile time error because the scope of variable i is only within “for” loop.
21. What will happen when you attempt to compile and run the following code?
int Output = 10;
boolean b1 = false;
if((b1 == true) && ((Output += 10) == 20)){
   System.out.println(”We are equal ” + Output);
}else{
   System.out.println(”Not equal! ” + Output);
}
A.compile error
B.compile and output of “we are equal 10”
C.compile and output of “not equal!20”
D.compile and output of “not equal!10”
22. What will be the result of executing the following code?
Given that Test1 is a class.
1. Test1[] t1 = new Test1[10];
2. Test1[][] t2 = new Test1[5][];
3. if (t1[0] == null)
4. {
5.t2[0] = new Test1[10] ;
6.t2[1] = new Test1[10];
7.t2[2] = new Test1[10];
8.t2[3] = new Test1[10];
9.t2[4] = new Test1[10];
10. }
11. System.out.println(t1[0]);
12. System.out.println(t2[1][0]);
A. The code will not compile because the array t2 is not initialized in an unconditional statement before use.
B. The code will compile but a runtime exception will be thrown at line 12.
C. The code will compile but a runtime exception will be thrown at line 11.
D. None of these
D is correct. Though we cannot use local variables without initializing them (compilation error), there is an exception to it. In case of arrays initialization is supposed to be complete when we specify the leftmost dimension of the array. The problem occurs at runtime if we try to access an element of the array which has not been initialized (specification of size). In the question above the array t2 is initialized before use, therefore there will be no problem at runtime also and the lines 11 and 12 will both print null.
23. What will happen when you attempt to compile and run the following code?
class Base{
int i = 99;
public void amethod(){
       System.out.println(”Base.amethod()”);
    }
    Base(){
     amethod();
     }
}
public class Derived extends Base{
int i = -1;
public static void main(String argv[]){
     Base b = new Derived();
       System.out.println(b.i);
       b.amethod();
   }
   public void amethod(){
       System.out.println(”Derived.amethod()”);
   }
}
A. Derived.amethod()
 -1
 Derived.amethod()
B. Derived.amethod()
  99
  Derived.amethod()
C. 99
D. 99
  Derived.amethod()
E. compile time error.
B is correct. The reason is that this code creates an instance of the Derived class but assigns it to a reference of a the Base class. In this situation a reference to any of the fields such as i will refer to the value in the Base class, but a call to a method will refer to the method in the class type rather than its reference handle. But note that if the amethod() was not present in the base class then compilation error would be reported as at compile time, when compiler sees the statement like b.amethod(), it checks if the method is present in the base class or not. Only at the run time it decides to call the method from the derived class.
24. What will be the output on compiling/running the following code?
public class MyThread implements Runnable {
  String myString = “Yes “;
  public void run() {
    this.myString = “No “;
  }
  public static void main(String[] args)  {
    MyThread t = new MyThread();
    new Thread(t).start();
    for (int i=0; i < 10; i++)
     System.out.print(t.myString);
  }
}
A. compile error
B. prints: yes yes yes yes yes yes and so on
C. prints: no no no no no no no no and so on
D. prints: yes no yes no ye no ye no and so on
E. the output cannot be determinated
E is correct. Please note that there will not be any compilation error when the above code is compiled. Also note that calling start() method on a Thread doesn't start the Thread. It only makes a Thread ready to be called. Depending on the operation system and other running threads, the thread on which start is called will get executed. In the above case it is not guaranteed that the thread will be executed(i.e. run() method will be called), always before “for” loop is executed. Thus the output cannot be determined.
25. Multiple objects of MyClass (given below) are used in a program that uses multiple Threads to create new integer count. What will happen when other threads use the following code?
class MyClass{
static private int myCount = 0;
int yourNumber;
private static synchronized int nextCount(){
return ++myCount;   //myCount为static
}
public void getYourNumber(){
yourNumber = nextCount();
}
}
A. the code ill give ompilation error
B. the code ill give runtime error
C. each thread will get a unique number
D. the uniqueness of the number different Threads can’t be guaranteed.
C is correct. The use of synchronized ensures that the number generated will not be duplicated, no matter how many Threads are trying to create the number. Thus D is incorrect. A and B are incorrect as the above code will not give any compiletime or runtime error.
26. Which of the following lines will print false?
1.public class MyClass
2.{
3.static String s1 = “I am unique!”;
4.public static void main(String args[])
5.{
6.String s2 = “I am unique!”;
7.String s3 = new String(s1);
8.System.out.println(s1 == s2);
9.System.out.println(s1.equals(s2));
10.System.out.println(s3 == s1);
11.System.out.println(s3.equals(s1));
12.System.out.println(TestClass.s4 == s1);
13.}
14.}
15.
16.class TestClass
17.{
18.static String s4 = “I am unique!”;
19.}
A. line 10 and 12
B. line 12 only
C. line 8 and 10
D. none of these
D is correct. Only line 10 will print false. Strings are immutable objects. That is, a string is read only once the string has been created and initialized, and Java optimizes handling of string literals; only one anonymous string object is shared by all string literals with the same contents. Hence in the above code the strings s1, s2 and s4 refer to the same anonymous string object, initialized with the character string: “I am unique!”. Thus s1 == s2 and TestClass.s4 will both return true and obviously s1.equals(s2) will return true. But creating string objects using the constructor String(String s) creates a new string, hence s3 == s1 will return false even though s3.equals(s1) will return true because s1 and s3 are referring to two different string objects whose contents are same.
27. What is displayed when the following code is compiled and executed?
String s1 = new String(”Test”);
String s2 = new String(”Test”);
if (s1==s2) System.out.println(”Same”);
if (s1.equals(s2)) System.out.println(”Equals”);
A. same equal
B. equals
C. same
D. compile but nothing is displayed upon exception
E. the code fails to compile.
B is correct. Here s1 and s2 are two different object references, referring to  different objects in memory. Please note that operator == checks for the memory address of two object references being compared and not their value. The “equals()” method of String class compares the values of two Strings. Thus s1==s2 will return “false” while s1.equals(s2) will return “true”. Thus only “Equals” will be printed.
28. What is displayed when the following is executed?
class Parent{
private void method1(){
System.out.println(”Parent's method1()”);
}
public void method2(){
System.out.println(”Parent's method2()”);
method1();
}
}
class Child extends Parent{
public void method1(){
System.out.println(”Child's method1()”);
}
public static void main(String args[]){
Parent p = new Child();
p.method2();
}
}
A. compile time error
B. run time error
C. prints: parent’s method2()  parent’s method1()
D. prints: parent’s method2()  child’s method1()
C is correct. The code will compile without any error and also will not give any run time error. The variable p refers to the Child class object. The statement p.method2() on execution will first look for method2() in Child class. Since there is no method2() in child class, the method2() of Parent class will be invoked and thus “Parent's method2()” will be printed. Now from the method2() , there is a call to method1(). Please note that method1() of Parent class is private, because of which the same method (method1() of Parent class) will be invoked. Had this method(method1() of Parent class) been public/protected/friendly (default), Child's class method1() would be called. Thus C is correct answer.
29. What will happen when you attempt to compile and run the following code snippet?
String str = “Java”;
StringBuffer buffer = new StringBuffer(str);
if(str.equals(buffer)){
System.out.println(”Both are equal”);
}else{
System.out.println(”Both are not equal”);
}
A. it will print ?C both are not equal
B. it will print ?C both are equal
C. compile time error
D. Runtime error
A is the correct choice. The equals method overridden in String class returns true if and only if the argument is not null and is a String object that represents the same sequence of characters as this String object. Hence, though the contents of both str and buffer contain “Java”, the str.equals(buffer) call results in false.
The equals method of Object class is of form -public boolean equals(Object anObject). Hence, comparing objects of different classes will never result in compile time or runtime error.
30. What will happen when you attempt to compile and run the following code?
public class MyThread extends Thread{
String myName;
MyThread(String name){
myName = name;
}
public void run(){
for(int i=0; i<100;i++){
System.out.println(myName);
}
}
public static void main(String args[]){
try{
MyThread mt1 = new MyThread(”mt1″);
MyThread mt2 = new MyThread(”mt2″);
mt1.start();
// XXX
mt2.start();
}catch(InterruptedException ex){}
}
}
A. compile error
B. mt1.join();
C. mt1.sleep(100);
D. mt1.run()
E. nothing need
Choice A and B are correct. In its current condition, the above code will not compile as “InterruptedException” is never thrown in the try block. The compiler will give following exception: “Exception java.lang.InterruptedException is never thrown in the body of the corresponding try statement.”
Note that calling start() method on a Thread doesn't start the Thread. It only makes a Thread ready to be called. Depending on the operating system and other running threads, the thread on which start is called will get executed. After making the above code to compile (by changing the InterruptedException to some other type like Exception), the output can't be predicted (the order in which mt1 and mt2 will be printed can't be guaranteed). In order to make the MyThread class prints “mt1″ (100 times) followed by “mt2″ (100 times), mt1.join() can be placed at //XXX position. The join() method waits for the Thread on which it is called to die. Thus on calling join() on mt1, it is assured that mt2 will not be executed before mt1 is completed. Also note that the join() method throws InterruptedException, which will cause the above program to compile successfully. Thus choice A and B are correct.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值