The following is a mock exam question: public class Test extends Thread { Stringmsg = "default" ; public Test(String s) { msg = s; } public void run() { System.out.println(msg); } public static void main(String args[]) { new Test("String1").start(); new Test("String2").start(); System.out.println("end"); } } The explanation for this question is that there are three threads running in this program, main thread and two others. The order of thread execution is not guranteed. But when I compile and run this code snippet on Win98, the "end" always come before "String1" and "String2". Is this occur depending on the OS? My question is whether the order of output is totally random or "end" always come before "String1" or "String2". Thanks
Valentin Crettaz
Gold Digger
Sheriff
Joined: Aug 26, 2001
Posts: 7610
posted
0
Order of thread execution completely depends upon the underlying platform. If it behaves like you said on Win98 it may behave completely different on other architecture. You cannot rely on the result of one platform to deduce the "universal" behavior of a multithreaded program. HIH ------------------ Valentin Crettaz Sun Certified Programmer for Java 2 Platform [This message has been edited by Valentin Crettaz (edited November 25, 2001).]