hi all.......
if i call the join() method in the run() method of ne
thread like the one in following code :
public void run()
{
join(1000);// will halt the execution of this thread for 1 sec
join();// will stop this thread permanantly
}
ok, so i think if v call join() in run() method of ne thread it act same as sleep(long mills) ( or sleep(long infinite) as in the 2nd case ).
is my this understanding is correct?
plz correct me if i m wrong.
thx in advance
.........Ajit