multiple thread

public class Property{
   
     public static class Nuaa1 extends Thread implements Runnable{ //靜態嵌套類
       public void  run(){
          System.out.println("Hello1"); 
       }  
     
    } 
   
     public static class Nuaa2 extends Thread implements Runnable{  //靜態嵌套類
     public void run(){
         System.out.println("Xiabing1"); 
      
     }
     
    }
   
   
    public static void main(String[] args){
        Property  obj =new Property();
        Property.Nuaa1 thread1= new Property.Nuaa1();
       thread1.start();
 
    }
}

 
  

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章