class MyThread extends Thread
{
public void run(){
try{
Thread.sleep(3000);
}catch(InterruptedException e){
}
System.out.println("B");
}
}
class Demo
{
public static void main(String[] args)
{
MyTread t = new MyTread();
t.run();
t.start();
System.out.println("A");
}
}
|
|