1. 程式人生 > >多線程之線程的實現

多線程之線程的實現

-s span demo rri 重寫 tar tex ext ide

線程的實現方法有兩種:

1.是繼承Thread類,重寫run方法。

2.是實現Runnable接口,實現run方法。

  繼承Thread:

 1 public class Demo8 {
 2 
 3     public static void main(String[] args) {
 4         Mytext mytext=new Mytext();
 5         mytext.start();
 6 
 7     }    
 8 
 9 }
10 class Mytext extends Thread {
11     @Override
12 public void run() { 13 System.out.println("繼承Thread"); 14 } 15 }

  實現Runnable接口:

 1 public class Demo9 {
 2 
 3     public static void main(String[] args) {
 4         Mytext1 mytext1=new Mytext1();
 5         Thread thread=new Thread(mytext1);
 6         thread.start();
7 8 } 9 10 } 11 class Mytext1 implements Runnable{ 12 13 @Override 14 public void run() { 15 System.out.println("實現Runnable接口"); 16 17 } 18 19 }

多線程之線程的實現