1. 程式人生 > >線程的兩種實現方式

線程的兩種實現方式

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(); } }

線程的兩種實現方式