有如下的代码段,当编译和运行时,下列各选项中说法正确的是( )。
public class Z
public static void main(String args[])
new Z ();
Z()
Z alias1 = this;
Z alias2 = this;
synchronized(alias1)
try
alias2.wait();
System.out.println("DONE WAITING");
catch (InterruptedException e)
System.out.println( "INTERRUPTED");
catch (Exception e)
System.out.println("OTHER EXCEPTION");
finally
System.out.println ("FINALLY");
System.out.println("ALL DONE");
A.应用程序编译正常,但是不打印任何数据
B.应用程序编译正常,并打印数据“DONE WAITING”
C.应用程序编译正常,并打印数据“FINALLY”
D.应用程序编译正常,并打印数据“ALL DONE”
参考答案:A
解析: 在Java中,每一个对象都有锁。任何时候,该锁都至多由一个线程控制。由于 alias1与alias2指向同一对象Z,在执行第11行前,线程拥有对象z的锁。在执行完第11行后,该线程释放了对象z的锁,进入等待池。但此后没有线程调用对象Z的notify()和 notifyAll()方法,所以该进程一直处于等待状态,没有输出。