hello everyone
i am having two Thead objects declared as bellow
final
Thread t1=new Thread(new Runnable()
{
public void run(){}
});
final Thread t2=new Thread(new Runnable()
{
public void run(){
t1.start();
}
});
t1.start();
t2.start();
wat i m facing is the thread t1 is not getting started from within t2
if i want to do so wats the way out? y is this code not working
Thanx