線程的兩種實現方式
阿新 • • 發佈:2018-09-06
class args new pub nds runnable implement ide start
線程的兩種實現方式
(1)繼承Thread類``
/**
* 繼承Thread類
*
*/
public class PayThread extends Thread {
@Override
public void run() {
System.out.println("繼承Thread");
}
public static void main(String[] args) {
Thread payThread = new PayThread();
payThread.start();
}
}
(2)實現Runnable接口
/**
* 實現Runnable接口
*
*/
public class PayRunnable implements Runnable {
@Override
public void run() {
System.out.println("實現Runnable");
}
public static void main(String[] args) {
Thread payThread = new Thread(new PayRunnable());
payThread.start();
}
}
線程的兩種實現方式