In this code the output is
New
thread: Thread[One,5,main]
New thread: Thread[Two,5,main]
New thread: Thread[Three,5,main]
One: 5
Thread One is alive: true
Thread Two is alive: true
Thread Three is alive: true
Three: 5
l.................................................more output
Why after out put of "New thread: Thread[One,5,main]" not be the out put "One:5" .can anybody explain why?"Is all 3 threads constructors call before run() method.