中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java多線程Thread怎么創建

發布時間:2023-05-06 10:23:14 來源:億速云 閱讀:115 作者:iii 欄目:開發技術

這篇文章主要介紹“Java多線程Thread怎么創建”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Java多線程Thread怎么創建”文章能幫助大家解決問題。

    1. 創建線程   

    1.1 通過構造函數:public Thread(Runnable target, String name){}  或:public Thread(Runnable target){}

    示例:

    Thread thread1 = new Thread(new MyThread(), "mythread");
    class MyThread extends Thread(){
            public void run(){
                 System.out.println("My First Thread');
            }
    }

    1.2 直接實現Runnable接口:

    示例:

    Thread thread2 = new Thread(new Runnable{}{
             public void run(){
                      System.out.println("This is my thread.");
              }
    });

    2. 運行線程   

    thead1.start()    

     3. sleep

    try{
        #休眠1000ms
        Thread.sleep(1000);
    }catch(InterruptedException e){
        e.printStackTrace();
    }

    4. getName() 獲取線程名字, getId()獲取線程id

    System.out.println(Thread.currentThread().getName() + ":"+ Thread.currentThread().getId);

    5. 停止線程,

    千萬不用stop(),stop會立即終止線程。

    通過interrupt()中斷線程,但是中斷并沒有停止線程,配合異常來實現:

    public class Main {
       public static void main(String[] args) throws InterruptedException {
          try{
              Thread thread1=new Thread(new TheThread(),"thread1");
              thread1.start();
              Thread.sleep(2000);
              thread1.interrupt();
          }catch (InterruptedException e){
                      e.printStackTrace();
           }
       }
    }
       class TheThread extends Thread{
         public void run() {
            super.run();
            for (int i = 0; i < 10; i++) {
               if(this.interrupted()){
                  break;
            }
            System.out.println(Thread.currentThread().getName() + ":" + i);
         }
       }
    }

    注意,如果在TheThread類里加入catch InterruptException的話,可能會導致interrupt被捕獲,而繞過if(this.interrupted())的判斷而無法終止線程。

    6. 等待和通知        

    線程等待:當前線程就處于等待狀態,直到其他線程調用了notify()方法,線程才會繼續執行

    public final void wait() throws InterruptedException

    線程通知:

    public final native void notify()

    注意:在notify()方法后,當前線程不會馬上釋放該對象鎖,要等到執行notify()方法的線程將程序執行完,也就是退出同步代碼塊中。

     package wait.notify;
     
     public class ThreadWaitNotifyTest {
         final static Object object=new Object();
         public static class T1 extends Thread{
             public void run(){
                 System.out.println(System.currentTimeMillis()+": T1 start");
                 synchronized (object){
                     try {
                         System.out.println(System.currentTimeMillis()+": T1 wait");
                         object.wait();
                     } catch (InterruptedException e) {
                         e.printStackTrace();
                     }
                 }
                 System.out.println(System.currentTimeMillis()+": T1 end");
             }
         }
         public static class T2 extends Thread{
             public void run(){
                 System.out.println(System.currentTimeMillis()+": T2 start");
                 synchronized (object){
                     System.out.println("T2 synchonized code start.");
                     object.notify();
                     try {
                         Thread.sleep(2000);
                     } catch (InterruptedException e) {
                         e.printStackTrace();
                     }finally{
                         System.out.println("T2 synchonized code end.");
                     }
     
                 }
                 try {
                     Thread.sleep(2000);
                 } catch (InterruptedException e) {
                     e.printStackTrace();
                 }
                 System.out.println(System.currentTimeMillis()+": T2 end");
             }
         }
         public static void main(String[] args){
             Thread thread1=new T1();
             Thread thread2=new T2();
             thread1.start();
             thread2.start();
         }
     }

    輸出結果:

    Java多線程Thread怎么創建

    7. 線程優先級

    高優先級的線程將會獲得更多的CPU資源。一共分為10個優先級。

    public final void setPriority(int newPriority)

    源碼分析:

    public final void setPriority(int newPriority) {
            ThreadGroup g;
            checkAccess();
            if (newPriority > MAX_PRIORITY || newPriority < MIN_PRIORITY) {
                throw new IllegalArgumentException();
            }
            if((g = getThreadGroup()) != null) {
                if (newPriority > g.getMaxPriority()) {
                    newPriority = g.getMaxPriority();
                }
                setPriority0(priority = newPriority);
            }
    }
    public final static int MIN_PRIORITY = 1;
    public final static int NORM_PRIORITY = 5;
    public final static int MAX_PRIORITY = 10;

    可見線程最高優先級為10, 最低為1, 默認為5.

    當設定的newPriority高于該線程組ThreadGroup的最高Priority時,只能分配該線程組的最高Priority

    8. 守護線程

    類似守護進程,Java存在兩種線程:用戶線程和守護線程。它是一種特殊線程,執行的是一種后臺服務,當一個系統中不存在非守護線程的時候,守護線程會自己銷毀。典型的守護線程:JVM的垃圾回收線程。

    public final void setDaemon(boolean on)

    示例:

    public class Main {
        public static void main(String[] args) throws InterruptedException {
           TheThread theThread=new TheThread();
            theThread.setDaemon(true);//設置守護線程
            theThread.start();
            Thread.sleep(5000);
            System.out.println("全都退出啦");
        }
        public static class TheThread extends Thread{
            public void run(){
                int i = 0;
                while (true){
                    i++;
                    System.out.println(Thread.currentThread().getId()+":"+i);
                    try {
                        Thread.sleep(2000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    }

    源碼分析:

    設置線程為用戶線程(user thread)或守護線程(daemon thread),當剩余運行的線程均為守護線程時,JVM會退出。

     public final void setDaemon(boolean on) {
            checkAccess();
            if (isAlive()) {
                throw new IllegalThreadStateException();
            }
            daemon = on;
        }

    其中checkAccesss()方法如下:

     public final void checkAccess() {
            SecurityManager security = System.getSecurityManager();
            if (security != null) {
                security.checkAccess(this);
            }
        }

    該方法用于判斷當前運行的線程是否有修改此線程的權限。

    而public final native boolean isAlive();用于判斷該線程是否處于alive狀態,即該線程是否已經start,且沒有die。

    當isAlive的話就會拋出IllegalThreadStateException異常。

    所以,設置守護線程的方法,邏輯就是先判斷當前線程是否有修改的權限,再判斷是否處于alive狀態,如果不處于alive狀態,則根據boolean變量on的值更改它的狀態,即true:設為daemon線程,false:設為user線程。

    關于“Java多線程Thread怎么創建”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    中江县| 乌什县| 苏尼特右旗| 武川县| 黎川县| 乌拉特中旗| 海伦市| 昌江| 岐山县| 泾川县| 芜湖县| 永清县| 商南县| 和龙市| 通州区| 湖口县| 四平市| 舟山市| 噶尔县| 迭部县| 吴桥县| 正蓝旗| 六安市| 渝中区| 民丰县| 华宁县| 江口县| 万宁市| 武夷山市| 湘阴县| 安吉县| 上栗县| 靖宇县| 秦皇岛市| 太白县| 荆门市| 彭泽县| 和硕县| 沅江市| 黄陵县| 安义县|