public void run(){
try{for(int i=5;i>0;i--){
System.out.println("My Thread: " +i);
t.sleep(2000);
}//end of for
}catch(InterruptedException e){System.out.println("MyThread Interrupted");}
System.out.println("MyThread exiting"); }
}//end of class
Like I want to have two threads with the only difference being t.sleep(1000) and t1.sleep(2000). How can I do that???