Java线程基础(线程状态、线程中止、线程通信、线程封闭)

线程状态

new:新建线程状态,线程被new出来,但未调用start方法。
runnable:可运行状态,调用start后,线程进入runnable状态,包括running(获得cpu使用权并获得cpu时间片,正在被cpu执行)和ready(获得cpu使用权但未抢到cpu时间片,等待被cpu执行)。
blocked:阻塞状态,当线程遇到加锁的代码块,但未获得锁的时候,线程进入阻塞。
waiting:等待状态,线程调用Object.wait(),Thread.join(),LockSupport.park()会进入waiting状态
timed_waiting:超时等待,和waiting状态的区别是会设置一个超时时间,超时时间过了后会直接返回执行。
terminated:线程执行完成

线程转换图

线程状态转换图

线程状态转换代码示例

public static void main(String[] args) throws Exception {
        //状态切换 - new -> runnable -> terminated
        System.out.println("#######状态切换 - new -> runnable -> terminated######################");
        Thread thread1 = new Thread(new Runnable() {
            @Override
            public void run() {
                System.out.println("执行了!thread1当前状态:"+Thread.currentThread().getState());
            }
        });
        System.out.println("未调用start,thread1的状态:"+thread1.getState());
        thread1.start();
        System.out.println("调用start后,thread1的状态:"+thread1.getState());
        Thread.sleep(100);
        System.out.println("运行完后,thread1的状态:"+thread1.getState());
        System.out.println();
    }
public static void main(String[] args) throws Exception {
		Thread current = Thread.currentThread();
        //状态切换 - timed_waiting
        System.out.println("#######状态切换 - timed_waiting####################");
        Thread thread2 = new Thread(()->{
            try {
           	/*Thread.sleep(long millis)、Thread.join(long millis)、LockSupport.parkUntil(long deadline)、
            	LockSupport.parkNanos(long nanos)、Object.wait(long timeout)都可以让线程进入timed_waiting状态*/
                Thread.sleep(200);
                //current.join(200);
                //LockSupport.parkNanos(200000000L);
                System.out.println("睡眠500ms后,执行了!thread2状态:"+Thread.currentThread().getState());
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        });
        System.out.println("未调用start,thread2的状态:"+thread2.getState());
        thread2.start();
        System.out.println("调用start后,thread2的状态:"+thread2.getState());
        Thread.sleep(100);
        System.out.println("100ms后,thread2状态:"+thread2.getState());
        Thread.sleep(300);
        System.out.println("300ms后,thread2状态:"+thread2.getState());
        System.out.println();
    }
public static Object object = null;

public static void main(String[] args) throws Exception {
        //状态切换 - waiting、blocked
        System.out.println("#######状态切换 - waiting、blocked####################");
        new apprun().waitNotifyTest();
    }
    
public void waitNotifyTest () throws Exception {
        Thread thread1 =
        new Thread(()->{
            synchronized (this){
                while (object == null) {
                    try {
                    /*Thread.join()、LockSupport.park()、Object.wait()都可以让线程进入timed_waiting状态*/
                        this.wait();
                        System.out.println("状态5:"+Thread.currentThread().getState());
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
                System.out.println("ok");
            }
        });
        System.out.println("状态1:"+thread1.getState());
        thread1.start();
        System.out.println("状态2:"+thread1.getState());
        Thread.sleep(500);
        object = new Object();
        synchronized (this) {
            System.out.println("状态3:"+thread1.getState());
            /*Object.wait()、Object.waitAll()、LockSupport.unpark(Thread)都可以唤醒线程*/
            this.notifyAll();
            //状态4为blocked状态而非waiting状态,是因为thread1虽然被唤醒了,但同步代码块还没执行完成,所以进入阻塞态
            System.out.println("状态4:"+thread1.getState());
        }
        Thread.sleep(20);
        System.out.println("状态6:"+thread1.getState());
    }

线程中止

线程中止的三种方式:通过Thread.stop()强制中止,通过Thread.interrupt()中止线程,通过状态位的方式来中止线程。

stop强制中止线程

不建议使用,强制中止线程会破坏线程安全性。
下面代码执行,得出的结果是i=1,j=0,同步代码块的原子性被破坏了,导致不符合预期结果。

public static void main(String[] args) throws InterruptedException {
        StopThread stopThread = new StopThread();
        stopThread.start();
        Thread.sleep(100);
        stopThread.stop();
        while (stopThread.isAlive()) {
            //保证线程执行完毕
        }
        stopThread.print();//输出结果为i=1,j=0,而非i=1,j=1
    }
    
public class StopThread extends Thread {
    private int i = 0, j = 0;
    @Override
    public void run() {
        synchronized (this) {
            i++;
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            j++;
        }
    }
    public void print(){
        System.out.println("i="+i+",j="+j);
    }
}

interrupt中止线程

interrupt可以改变线程的中断状态,但它并不会中断线程的运行。 如果我们要通过interrupt中止线程,可以通过isInterrupted()或者interrupted()获取中断状态,逻辑判断退出。
interrupt在使用的时候会有两种情况:
1、当碰到线程被挂起(如wait,sleep导致waiting状态,线程锁住导致blocked状态),调用interrupt,将会抛出InterruptedException,并将状态改为非中断状态,线程并不中止,代码还是会继续执行
在上文main方法中将stopThread.stop()改为stopThread.interrupt();输出结果将会变为i=1,j=1,并抛出InterruptedException
在这里插入图片描述
2、如果线程正常执行,调用interrupt,它只会改变线程的中断状态,线程并不中止,代码继续执行。
ps:调用interrupted()在获取到线程状态的同时,会重置线程的中断状态为非中断;调用isInterrupted()则只会获取线程状态,不会进行重置操作

public static void main(String[] args) throws InterruptedException {
        InterruptThread interruptThread = new InterruptThread();
        interruptThread.start();
        Thread.sleep(1);
        interruptThread.interrupt();
        System.out.println("main线程");
    }

    static class InterruptThread extends Thread {
        @Override
        public void run() {
            while (true) {
                if (Thread.currentThread().isInterrupted()) {
                    System.out.println("Interrupted状态");
                    //如果不手动return,线程会一直执行打印:“Interrupted状态”
                    return;
                } else {
                    System.out.println("unInterrupted状态");
                }
            }
        }
    }

上面的代码,如果不自行在判断中加入中止操作,线程并不中止,会持续打印:“Interrupted状态”。

通过状态位来中止线程

手动设置状态变量,根据状态位来判断,是否中止线程。
PS:注意状态变量的可见性

	//注意使用volatile 保证变量的可见性
	public static volatile boolean flag = true;

    public static void main(String[] args) throws InterruptedException {
        Thread thread = new Thread(()->{
            while (flag) {
                System.out.println("线程执行中!");
            }
        });
        thread.start();
        Thread.sleep(1);
        flag = false;
        while (thread.isAlive()) {

        }
        System.out.println("程序运行结束!");
    }

通过状态位可以比较优雅的中止线程,但如果碰到线程挂起,只通过状态位判断来处理是不能解决的,这时可以结合interrupt来中断被挂起的线程。

public static void main(String[] args) throws InterruptedException {
        Thread thread = new Thread(()->{
            while (flag) {
                try {
                    Thread.sleep(100000);
                } catch (InterruptedException e) {
                    System.out.println("退出waiting状态!");
                }
                System.out.println("线程执行中!");
            }
        });
        thread.start();
        Thread.sleep(1);
        flag = false;
        Thread.sleep(1000);
        thread.interrupt();
        while (thread.isAlive()) {

        }
        System.out.println("程序运行结束!");
    }

线程通信

多个线程并发执行时, 在默认情况下CPU是随机切换线程的,当我们需要多个线程来共同完成一件任务,并且我们希望他们有规律的执行, 那么多线程之间需要一些协调通信,以此来帮我们达到多线程共同操作一份数据。

下面是三种线程协作通信方式的对比:suspend/resume、wait/notify、park/unpark。

suspend/resume

suspend在调用时并不会释放锁资源,同时suspend/resume对执行的顺序有严格的要求。这两点都非常容易导致代码死锁,所以官方不建议通过suspend/resume的方式来进行通信,挂起和唤醒线程。

//suspend未释放锁导致代码死锁
	public static volatile boolean flag = true;

    public static void main(String[] args) throws Exception {
        new Demo().SuspendThread();
        System.out.println("程序运行结束!");
    }

    public void SuspendThread () {
        Thread thread = new Thread(()->{
            synchronized (this) {
                System.out.println("线程运行中!");
                while (flag) {
                    System.out.println("执行suspend!");
                    Thread.currentThread().suspend();
                }
            }
        });
        System.out.println("线程start!");
        thread.start();
        try {
            Thread.sleep(1);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        flag = false;
        synchronized (this) {
            System.out.println("执行resume!");
            thread.resume();
        }
        thread.join();
    }
//resume先于suspend执行,导致死锁
public void SuspendThread () throws InterruptedException {
        Thread thread = new Thread(()->{
            while (flag) {
                System.out.println("线程睡眠3秒!");
                try {
                    Thread.sleep(3000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println("执行suspend!");
                Thread.currentThread().suspend();
            }
        });
        System.out.println("线程start!");
        thread.start();
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        flag = false;
        System.out.println("执行resume!");
        thread.resume();
        thread.join();
    }

wait/notify

wait在调用时会释放掉锁,避免了因未释放锁导致的死锁。但wait/notify对执行顺序有严格的要求,如果notify先于wait执行,还是会导致死锁。
wait/notify的API是由锁对象来调用的,如果调用者不是锁对象,会抛出IllegalMonitorStateException

//notify先于wait执行,导致死锁
public void SuspendThread () throws InterruptedException {
        Thread thread = new Thread(()->{
            while (flag) {
                System.out.println("线程睡眠3秒!");
                try {
                    Thread.sleep(3000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                synchronized (this) {
                    System.out.println("执行wait!");
                    try {
                        this.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        });
        System.out.println("线程start!");
        thread.start();
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        flag = false;
        System.out.println("执行notifyAll!");
        synchronized (this) {
            this.notifyAll();
        }
        thread.join();
    }

park/unpark

park/unpark对执行顺序没有要求,但是park并不会释放锁资源,会因为未释放锁而导致的死锁。

//park未释放锁资源,导致死锁
public void SuspendThread () throws InterruptedException {
        Thread thread = new Thread(()->{
            synchronized (this) {
                System.out.println("线程运行中!");
                while (flag) {
                    System.out.println("执行park()!");
                    LockSupport.park();
                }
            }
        });
        System.out.println("线程start!");
        thread.start();
        try {
            Thread.sleep(1);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        flag = false;
        synchronized (this) {
            System.out.println("执行unpark()");
            LockSupport.unpark(thread);
        }
        thread.join();
    }

线程封闭

在Java内存模型中,Java虚拟机栈、本地方法栈、程序计数器都是属于线程独享的内存区域。因此存储于虚拟机栈空间中的局部变量天然就具有线程封闭的特性。
除开线程独享区域的变量,如果我们想要让线程独享某些变量,那么我们还可以使用ThreadLocal让变量达到线程封闭的效果。

public static ThreadLocal<String> value = new ThreadLocal<>();

    public static void main(String[] args) throws Exception {
        value.set("这是main函数设置的变量!");
        Thread thread1 = new Thread(() -> {
            System.out.println("thread1获取的变量值为:"+value.get());
        });
        thread1.start();
        System.out.println("main函数的ThreadLocal变量为:"+value.get());
    }
在探索智慧旅游的新纪元中,一个集科技、创新与服务于一体的整体解决方案正悄然改变着我们的旅行方式。智慧旅游,作为智慧城市的重要分支,旨在通过新一代信息技术,如云计算、大数据、物联网等,为游客、旅游企业及政府部门提供无缝对接、高效互动的旅游体验与管理模式。这一方案不仅重新定义了旅游行业的服务标准,更开启了旅游业数字化转型的新篇章。 智慧旅游的核心在于“以人为本”,它不仅仅关注技术的革新,更注重游客体验的提升。从游前的行程规划、信息查询,到游中的智能导航、个性化导览,再到游后的心情分享、服务评价,智慧旅游通过构建“一云多屏”的服务平台,让游客在旅游的全过程中都能享受到便捷、个性化的服务。例如,游客可以通过手机APP轻松定制专属行程,利用智能语音导览深入了解景点背后的故事,甚至通过三维GIS地图实现虚拟漫游,提前感受目的地的魅力。这些创新服务不仅增强了游客的参与感满意度,也让旅游变得更加智能化、趣味化。 此外,智慧旅游还为旅游企业政府部门带来了前所未有的管理变革。通过大数据分析,旅游企业能够精准把握市场动态,实现旅游产品的精准营销个性化推荐,从而提升市场竞争力。而政府部门则能利用智慧旅游平台实现对旅游资源的科学规划精细管理,提高监管效率质量。例如,通过实时监控数据分析,政府可以迅速应对旅游高峰期的客流压力,有效预防景区超载,保障游客安全。同时,智慧旅游还促进了跨行业、跨部门的数据共享与协同合作,为旅游业的可持续发展奠定了坚实基础。总之,智慧旅游以其独特的魅力无限潜力,正引领着旅游业迈向一个更加智慧、便捷、高效的新时代。
内容概要:本文详细介绍了大模型的发展现状与未来趋势,尤其聚焦于DeepSeek这一创新应用。文章首先回顾了人工智能的定义、分类及其发展历程,指出从摩尔定律到知识密度提升的转变,强调了大模型知识密度的重要性。随后,文章深入探讨了DeepSeek的发展路径及其核心价值,包括其推理模型、思维链技术的应用及局限性。此外,文章展示了DeepSeek在多个行业的应用场景,如智能客服、医疗、金融等,并分析了DeepSeek如何赋能个人发展,具体体现在公文写作、文档处理、知识搜索、论文写作等方面。最后,文章展望了大模型的发展趋势,如通用大模型与垂域大模型的协同发展,以及本地部署小模型成为主流应用渠道的趋势。 适合人群:对人工智能大模型技术感兴趣的从业者、研究人员及希望利用DeepSeek提升工作效率的个人用户。 使用场景及目标:①了解大模型技术的最新进展发展趋势;②掌握DeepSeek在不同领域的具体应用场景操作方法;③学习如何通过DeepSeek提升个人在公文写作、文档处理、知识搜索、论文写作等方面的工作效率;④探索大模型在特定行业的应用潜力,如医疗、金融等领域。 其他说明:本文不仅提供了理论知识,还结合实际案例,详细介绍了DeepSeek在各个场景下的应用方式,帮助读者更好地理解应用大模型技术。同时,文章也指出了当前大模型技术面临的挑战,如模型的局限性数据安全问题,鼓励读者关注技术的持续改进发展。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值