Java 多线程(进程终止)

2021-06-04 00:01

阅读:637

标签:状态   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 

Java 多线程(进程终止)

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

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


评论


亲,登录后才可以留言!