亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

什么是java守護線程

發布時間:2021-10-15 11:10:54 來源:億速云 閱讀:135 作者: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

丹阳市| 衡南县| 包头市| 高雄县| 河东区| 南投市| 宜昌市| 肥乡县| 罗甸县| 密山市| 盐池县| 平阴县| 六枝特区| 济宁市| 湖南省| 宝鸡市| 正定县| 武汉市| 德保县| 鹤庆县| 师宗县| 黑水县| 称多县| 嘉义市| 榆中县| 甘孜县| 清镇市| 甘南县| 台东县| 宁阳县| 莫力| 合川市| 东阿县| 阿勒泰市| 揭西县| 昆山市| 大足县| 凉山| 舟山市| 延长县| 崇礼县|