class ThDemo extends Thread { public void run() { int x; for(x=1;x<=10;x++) { try { Thread.sleep(2000); System.out.println(x); } catch(Exception e) { System.out.println(e); } } } } public class Main { public static void main(String args[]) { ThDemo d1=new ThDemo(); d1.start(); } }
1
2
3
4
5
6
7
8
9
10