当前位置:   article > 正文

Java多线程技能(九)——暂停线程_java线程暂停

java线程暂停


  暂停线程意味着此线程还可以恢复运行。在 Java 多线程中,可以使用 suspend() 方法暂停线程,使用 resume() 方法恢复线程的执行。

1.suspend与resume方法的使用

  创建项目suspend_resume_test,文件MyThread代码如下:

package mythread;
public class MyThread extends Thread {
    private long i = 0;
    public long getI() {
        return i;
    }
    public void setI(long i) {
        this.i = i;
    }
    @Override
    public void run() {
        while (true) {
            i++;
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

文件Run.java代码如下:

package test.run;
import mythread.MyThread;
public class Run {
    public static void main(String[] args) throws InterruptedException {
        try {

        MyThread myThread = new MyThread();

        System.out.println("线程开始执行");
        myThread.start();
        Thread.sleep(3000);
        System.out.println(myThread.getI());
        System.out.println(myThread.getI());

        System.out.println("线程暂停执行");
        myThread.suspend();
        System.out.println("A=" + System.currentTimeMillis() + " i=" + myThread.getI());
        Thread.sleep(3000);
        System.out.println("A=" + System.currentTimeMillis() + " i=" + myThread.getI());

        System.out.println("线程恢复执行");
        myThread.resume();
        System.out.println(myThread.getI());
        System.out.println(myThread.getI());
        Thread.sleep(3000);

        System.out.println("线程暂停执行");
        myThread.suspend();
        System.out.println("B=" + System.currentTimeMillis() + " i=" + myThread.getI());
        Thread.sleep(3000);
        System.out.println("B=" + System.currentTimeMillis() + " i=" + myThread.getI());
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35

  程序运行后的结果如下:

线程开始执行
2185737846
2185793292
线程暂停执行
A=1653834350323 i=2185874251
A=1653834353323 i=2185874251
线程恢复执行
4387175149
4387217064
线程暂停执行
B=1653834356324 i=4387272762
B=1653834359325 i=4387272762
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

  从控制台的输出我们可以很清楚地看到:在开始和暂停之间的两次次输出是不同的,说明线程正在运行;在暂停和恢复之间的两次输出是一样的,说明线程已暂停;在恢复之后的两次输出是不同的,说明线程已恢复执行。

2.suspend与resume方法的缺点——独占

  在使用 suspend 与 resume 方法时,如果使用不当,极易造成公共的同步对象的独占,使得其他线程无法访问公共同步对象。

3.suspend与resume方法的缺点——不同步

  在使用 suspend 与 resume 方法时也容易出现因为线程的暂停而导致数据不同步的情况。


以上代码下载请点击该链接:https://github.com/Yarrow052/Java-package.git

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/1004244
推荐阅读
相关标签
  

闽ICP备14008679号