欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

IntelliJ IDEA中run和debug启动方式的局别

程序员文章站 2022-03-02 22:47:01
...

说起来关于run 以及 debug。
我们一般直接会想到,run的运行速度稍微快一些,debug可以使用断点来追踪程序的运行情况。
当我们启动一个单线程java程序的时候,我们知道会有一个主线程,还有其余的子线程,比如内存垃圾回收线程。默认情况下,我们会只考虑一个主线程。
当我们以debug方式运行下面的代码时候,理论分析了一下,应该只有11个线程,结果如我们所想。
但当我们以run方式运行的时候,会发现出现了12个线程,多了一个Monitor Ctrl-Break线程。

public class Test {
    public volatile int inc = 0;

    public synchronized  void increase() {
        inc++;
    }

    public static void main(String[] args) {
        final Test test = new Test();
        for(int i=0;i<10;i++){
            new Thread(){
                @Override
                public void run() {
                    for(int j=0;j<10000;j++) {
                        test.increase();
                    }
                };
            }.start();
        }

        Thread.currentThread().getThreadGroup().list();
//保证前面的线程都执行完
        while(Thread.activeCount()>1)
        {
            Thread.yield();
        }
        System.out.println(test.inc);
    }
}

那么这个线程Monitor Ctrl-Break的作用
就是在反射方式执行用户程序之前,又开了一个Ctrl Break的Monitor的Socket线程,去做监听。
run 的时候会通过 -javaagent 参数设置自己的监视器(lib/idea_rt.jar)


借鉴来源