Options: A: The code does not compile due to line //1. B: The code does not compile due to line //2. C: The code does not compile due to line //3. D: The code does not compile due to line //4. E: There is nothing wrong with the code. Ans: E)Nothing wrong with the code.. My question is can we implement Thread.yield() is called when is no start() and no run ().Should it compile? And Surprisingly , the output printed is "false"!!! Can any one explain me? Sonir
Valentin Crettaz
Gold Digger
Sheriff
Joined: Aug 26, 2001
Posts: 7610
posted
0
When you run your program (the main method is invoked by the interpreter) you have at least one thread running, the "main" thread. Thus invoking Thread.yield() is perfectly legal... HIH [ January 21, 2002: Message edited by: Valentin Crettaz ]