can someone tell me the order in which a thread starts to execute?. I have written the following code
class NewThread implements Runnable { Thread t; New
There is no implicit order. If you must have an order, use the ExecutorService with a que depth of 1.