Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package thread;
  2.  
  3. public class HelloThread {
  4.    
  5.     public static void main(String [] args){
  6.         Hello h =new Hello();
  7.         Hello2 h2 =new Hello2();
  8.         h2.run();
  9.         h.start();
  10.         for(int i=0 ;i <10 ;i++){
  11.             h.printHello();
  12.             System.out.println(Thread.currentThread().getName());
  13.         }
  14.     }
  15.  
  16. }
  17.  
  18. class Hello extends Thread{
  19.     public void printHello(){
  20.         System.out.println("hello");   
  21.     }
  22. }
  23.  
  24. class Hello2 implements Runnable{
  25.     public void run(){
  26.         System.out.println("hello 2");
  27.        
  28.     }
  29. }