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

溫馨提示×

溫馨提示×

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

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

java守護線程的概念是什么

發布時間:2022-05-16 15:04:23 來源:億速云 閱讀:184 作者:iii 欄目:大數據

本文小編為大家詳細介紹“java守護線程的概念是什么”,內容詳細,步驟清晰,細節處理妥當,希望這篇“java守護線程的概念是什么”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

1、當其他非守護線程完成時,守護線程將自行結束。

2、任何線程都可以成為守護線程。通過調用Thread.setdaemon()來聲明一個線程是一個守護線程。線程的共性是只有在非守護線程還在工作時才有意義。

實例

/**
 * Creates ten threads to search for the maximum value of a large matrix.
 * Each thread searches one portion of the matrix.
 */
public class TenThreads {
 
    private static class WorkerThread extends Thread {
        int max = Integer.MIN_VALUE;
        int[] ourArray;
 
        public WorkerThread(int[] ourArray) {
            this.ourArray = ourArray;
        }
 
        // Find the maximum value in our particular piece of the array
        public void run() {
            for (int i = 0; i < ourArray.length; i++)
                max = Math.max(max, ourArray[i]);
        }
 
        public int getMax() {
            return max;
        }
    }
 
    public static void main(String[] args) {
        WorkerThread[] threads = new WorkerThread[10];
        int[][] bigMatrix = getBigHairyMatrix();
        int max = Integer.MIN_VALUE;
 
        // Give each thread a slice of the matrix to work with
        for (int i=0; i < 10; i++) {
            threads[i] = new WorkerThread(bigMatrix[i]);
            threads[i].start();
        }
 
        // Wait for each thread to finish
        try {
            for (int i=0; i < 10; i++) {
                threads[i].join();
                max = Math.max(max, threads[i].getMax());
            }
        }
        catch (InterruptedException e) {
            // fall through
        }
 
        System.out.println("Maximum value was " + max);
    }
}

讀到這里,這篇“java守護線程的概念是什么”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

梅河口市| 婺源县| 观塘区| 广东省| 博客| 西藏| 明星| 华阴市| 年辖:市辖区| 新兴县| 泰来县| 敦煌市| 原阳县| 广西| 蒙山县| 岳普湖县| 沙洋县| 成安县| 蚌埠市| 新津县| 鹤庆县| 迁安市| 南通市| 长垣县| 辉县市| 甘肃省| 公主岭市| 舞钢市| 玉门市| 若羌县| 金昌市| 吉林市| 海城市| 介休市| 娱乐| 昌宁县| 合川市| 平顶山市| 封开县| 东明县| 广灵县|