码迷,mamicode.com
首页 > 编程语言 > 详细

Java 多线程(进程终止)

时间:2021-04-16 12:26:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:状态   lazy   star   OLE   RoCE   als   for   http   proc   

??线程的几个状态

技术图片

??线程终止

想要终止一个线程的时候, 不推荐使用使用java里面的stop(), destory()以及一些过期的方法, 我们可以使用标志变量来控制让线程自行终止, 这相对来说是比较安全的一种方式.

package com.smile.test.thread;

public class StopThread implements Runnable {
    private boolean flag = true;

    public static void main(String[] args) {
        StopThread stopThread = new StopThread();
        new Thread(stopThread, "test").start();
        for (int i = 0; i < 1000; i++) {
            if (i == 999){
                stopThread.stop();
            }
            System.out.println(Thread.currentThread().getName() + i);
        }


    }

    @Override
    public void run() {
        while (flag){
        System.out.println(Thread.currentThread().getName() + "  is running");
        }
    }
    private void stop(){
        this.flag = false;
    }
}

Java 多线程(进程终止)

标签:状态   lazy   star   OLE   RoCE   als   for   http   proc   

原文地址:https://www.cnblogs.com/lvzl/p/14665707.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!