Tuesday, 19 April 2011

Does each thread has its own thread stack?

Yes each thread has its own call stack. For eg
Thread t1 = new Thread();
Thread t2 = new Thread();
Thread t3 = t1;

No comments:

Post a Comment