java多線程學習-一
阿新 • • 發佈:2018-08-08
[] 開啟 類對象 run方法 clas 線程學習 sys read pre 開啟多線程
1,繼承Thread
2,重寫run方法
3,將要執行的代碼寫在run方法中
4,創建Thread類的子類對象
5,開啟線程
/** * @param args */ public static void main(String[] args) { MyThread mt = new MyThread(); //4,創建Thread類的子類對象 mt.start(); //5,開啟線程 for(int i = 0; i < 1000; i++) { System.out.println("main()"); } } } class MyThread extends Thread { //1,繼承Thread public void run() { //2,重寫run方法 for(int i = 0; i < 1000; i++) { //3,將要執行的代碼寫在run方法中 System.out.println("aaa"); } }
public static void main(String[] args) { MyThread myThread = new MyThread(); myThread.start(); for (int i = 0; i <10000; i++) { System.out.println("mian()"); } } } class MyThread extends Thread{ public void run(){ for (int i = 0; i < 10000; i++) { System.out.println("run()"+i); } }
java多線程學習-一