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

溫馨提示×

溫馨提示×

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

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

什么是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

平顺县| 松溪县| 靖江市| 渭南市| 安化县| 泰和县| 广饶县| 湖南省| 朔州市| 遵义县| 田阳县| 林口县| 水富县| 辽阳县| 河源市| 沈阳市| 兴义市| 汶上县| 梧州市| 正镶白旗| 金寨县| 钟山县| 苏州市| 保德县| 安福县| 濮阳市| 安乡县| 陆河县| 达州市| 荣昌县| 白玉县| 双牌县| 正阳县| 德化县| 保定市| 青河县| 珠海市| 和平区| 武平县| 长寿区| 平定县|