91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么用java線程監控Lock接口的類

發布時間:2022-11-04 17:55:42 來源:億速云 閱讀:171 作者:iii 欄目:編程語言

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

1. 進程和線程的區別

區別

進程

線程

根本區別

作為資源分配的單位

調度執行的單位

開銷

每個進程都有獨立的代碼和數據空間(進程上下文),進程間的切換會有較大的開銷。切換發生在不同的內存地址上。

輕量級進程,同一類線程共享代碼和數據空間,每個線程有獨立的運行棧,以及程序計數器。線程的切換開銷小。切換發生在同一內存地址上。

內存分配

每個進程分配不同的內存區域。

不會為線程分配內存。線程使用的資源是它所屬的進程的。線程組只能共享資源

2. 靜態代理模式
  • Thread:代理角色

  • 實現Runnable接口的類:真實角色

  • 有代理就有機會在執行真實角色對象方法之前或之后加入額外的動作。

3. 常用方法
Thread t=Thread.currentThread() //獲取當前線程對象
Thread.currentThread().toString() //輸出當前線程對象的[name,priority,group]
t.getName() //獲取線程的名稱
t.setName() //修改線程的名稱
Thread t=new Thread(MyRunnable,"自定義線程名稱")
4. 線程控制方法
t.join() 讓線程t插隊
Thread.yield() 禮讓,讓出CPU的使用權一次(從運行態進入就緒態)
Thread.sleep()
5. 同步鎖
  • 同步代碼塊

synchronized(obj){
  ...
}

obj為同步對象(只能是對象),且一般選擇為共享資源的對象。可以是this當前對象,也可以是其他對象。

  • 同步方法

public synchronized ... methodName(args...){
  ...
}

同步方法的同步對象為this。

6. 使用Callable接口啟動線程

使用繼承Thread或者使用Runnable接口靜態代理的方式,存在如下缺點:

  • 沒有返回值

  • 不支持泛型

  • 異常必須處理,不能外拋throws。

為此可以實現Callable接口,重寫call()方法。

怎么用java線程監控Lock接口的類

public class MyCallable implements Callable<String> {

    @Override
    public String call() throws Exception {
        String[] gentleman={"春申君","信陵君","平原君","孟嘗君"};
        int index=(int) (Math.random()*3);
        return gentleman[index];
    }
}

class Test{
    public static void main(String[] args) throws ExecutionException, InterruptedException {
        MyCallable call=new MyCallable();
        FutureTask<String> task=new FutureTask<>(call);
        Thread t=new Thread(task);
        t.start();
        //獲取返回值
        System.out.println("春秋四公子:"+task.get());
        //判斷是否執行完成
        System.out.println("任務是否執行完成:"+task.isDone());
    }
}
7. 線程同步鎖Lock

監控實現Lock接口的類。
java.util.concurrent.lock中的Lock是一個接口,它的實現類是一個Java類,而不是關鍵字。在線程同步中比synchronized更靈活。如果同步代碼有異常,要將unLock()放到finally中。

public class CountRunnable implements Runnable {
    private int count = 0;

    Lock lock = new ReentrantLock();

    @Override
    public void run() {
        for (int i = 0; i < 10; i++) {
            //synchronized (this) {
            try {
                lock.lock();
                count++;
                try {
                    Thread.sleep(300);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println(Thread.currentThread().getName() + "執行操作:count=" + count);
            } finally {
                lock.unlock();
            }
        }
    }
}

class Test {
    public static void main(String[] args) {
        CountRunnable cr = new CountRunnable();
        Thread t1 = new Thread(cr, "A");
        Thread t2 = new Thread(cr, "B");
        Thread t3 = new Thread(cr, "C");

        t1.start();
        t2.start();
        t3.start();
    }
}

Lock與synchronized的區別

  • Lock是顯式鎖,需要手動開啟和關閉,而隱式鎖synchronized不需要。

  • Lock只有代碼塊鎖,而synchronized有代碼塊鎖和方法鎖。

  • 使用Lock鎖JVM將花費更少的時間來調度線程。有更好的性能和擴展性(提供更多的子類)。

  • Lock本質是一個臨界區鎖。

8. 線程池
  • 執行Runnable任務

public class Test1 {
    public static void main(String[] args) {
        //線程池中只有一個線程
//        ExecutorService pool1 = Executors.newSingleThreadExecutor();
        //線程池中有固定數量的線程
        ExecutorService pool1 = Executors.newFixedThreadPool(10);
        //線程池中的線程數是動態改變的(按需)
//        ExecutorService pool1 = Executors.newCachedThreadPool();
        //執行大量任務
        for (int i = 0; i < 20; i++) {
            final int n = i;
            Runnable cmd = new Runnable() {
                @Override
                public void run() {
                    System.out.println("開始執行:" + n);
                    try {
                        Thread.sleep(300);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    System.out.println("執行結束:" + n);
                }
            };
            pool1.execute(cmd);
        }
        pool1.shutdown();
    }
}
  • 執行Callable任務

public class Test2 {
    public static void main(String[] args) throws ExecutionException, InterruptedException {
        //線程池中只有一個線程
//        ExecutorService pool1 = Executors.newSingleThreadExecutor();
        //線程池中有固定數量的線程
        ExecutorService pool1 = Executors.newFixedThreadPool(10);
        //線程池中的線程數是動態改變的(按需)
//        ExecutorService pool1 = Executors.newCachedThreadPool();

        List<Future> list = new ArrayList<>();

        //執行大量任務
        for (int i = 0; i < 20; i++) {
            final int n = i;
            Callable<Integer> task = new Callable<Integer>() {
                @Override
                public Integer call() throws Exception {
                    Thread.sleep(500);
                    return (int) (Math.random() * 10) + 1;
                }
            };
            Future f = pool1.submit(task);
            list.add(f); //先把任務都分發出去
//            System.out.println(f.get()); //要等到每個線程執行結束才得到返回值,效率較低
        }
        System.out.println("分發異步執行");
        for (Future f : list) { //最后再收集返回結果
            System.out.println(f.get());
        }
        System.out.println("獲得最終執行結果");
        pool1.shutdown();
    }
}
9. ThreadLocal在數據庫連接上的應用

ThreadLocal經常應用在數據庫連接和session管理上。

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

向AI問一下細節

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

AI

玛曲县| 陆河县| 任丘市| 渭南市| 湖州市| 青阳县| 东阳市| 鄂托克前旗| 建昌县| 辽宁省| 白玉县| 登封市| 当雄县| 万载县| 福海县| 通河县| 隆子县| 五原县| 颍上县| 曲阜市| 鸡泽县| 石狮市| 卫辉市| 淳化县| 民乐县| 哈密市| 绥德县| 凤翔县| 广南县| 那坡县| 三穗县| 苍山县| 巴林左旗| 盐山县| 贵定县| 石渠县| 万安县| 扎鲁特旗| 宽城| 桐柏县| 科技|