Delete comment from: Javarevisited
Given Q: “You have three threads T1, T2 and T3, How do you ensure that they finish in order T1, T2, T3 ?.
Given A: You can do this by using join method by calling T3.join() from T2 and T2.join() from T1.
Comment : In this case, won't the finishing order be T3, T2 and T1 rather T1, T2 and T3.
Feb 13, 2013, 8:49:04 AM
Posted to How to Join Multiple Threads in Java? [Thread.join() Example]