广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Java技术 > 正文

惠州Java线程状态是什么?_北大青鸟IT学校

作者:邓华发布时间:2021-05-12分类:Java技术浏览:721


导读:相信大家在学习Java的过程都会遇到各种各样的问题,例如:Java线程状态是什么?那么下面我们一起来看看惠州北大青鸟学术部老师是怎么讲解这道题的。

相信大家在学习Java的过程都会遇到各种各样的问题,例如:Java线程状态是什么?那么下面我们一起来看看惠州北大青鸟学术部老师是怎么讲解这道题的。

停止,挂起和恢复线程

下面的代码演示了如何模拟Thread类中的stop(),suspend()和resume()方法。

public class Main extends Thread {  private volatile boolean keepRunning = true;  private boolean suspended = false;  public synchronized void stopThread() {
   this.keepRunning = false;
   this.notify();
 }  public synchronized void suspendThread() {
   this.suspended = true;
 }  public synchronized void resumeThread() {
   this.suspended = false;
   this.notify();
 }  public void run() {
   System.out.println("Thread started...");    while (keepRunning) {      try {
       System.out.println("Going to sleep...");
       Thread.sleep(1000);        synchronized (this) {          while (suspended) {
           System.out.println("Suspended...");
           this.wait();
           System.out.println("Resumed...");
         }
       }
     } catch (InterruptedException e) {
       e.printStackTrace();
     }
   }
 }  public static void main(String[] args) throws Exception {
   Main t = new Main();
   t.start();
   Thread.sleep(2000);
   t.suspendThread();
   Thread.sleep(2000);
   t.resumeThread();
   Thread.sleep(2000);
   t.stopThread();
 }
}

上面的代码生成以下结果。

Thread started...

Going to sleep...

Going to sleep...

Suspended...

Resumed...

Going to sleep...

Going to sleep...

Going to sleep...

想了解更多关于Java的资讯吗?可以来惠州北大青鸟新方舟校区了解一下。

Java19.jpg

Java

标签:惠州计算机JAVA软件开发惠州计算机Java软件开发惠州计算机JAVA培训惠州计算机JAVA软件开发学校惠州计算机Java软件开发培训JAVAJava软件开发北大青鸟IT计算机学校北大青鸟IT软件学校北大青鸟IT学校


Java技术排行
标签列表
网站分类
文章归档
最近发表