程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> Java 創立線程

Java 創立線程

編輯:關於JAVA

Java 創立線程。本站提示廣大學習愛好者:(Java 創立線程)文章只能為提供參考,不一定能成為您想要的結果。以下是Java 創立線程正文


承繼 Thread 方式:
public class MyThread extends Thread {

    public void run() {
        System.out.println("MyThread......");
    }

    public static void main(String[] args) {
        MyThread myThread = new MyThread();
        myThread.start();
    }
    
}

完成 Runnable 方式:
public class MyRunnable implements Runnable {
    
    public void run() {
        System.out.println("MyRunnable......");
    }
    
    public static void main(String[] args) {
        Thread thread = new Thread(new MyRunnable());
        thread.start();
    }
    
}



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved