微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

IDEA断点的两种方式:ALL和Thread

部分转载来自:https://www.jianshu.com/p/e7565f42f652

总结:

All:

使用all模式对于程序中含有多个线程来说,会将多个线程都阻塞在断点,此时所有的线程都执行到此处,如果有其他线程没有达到此断点,会进行等待

Tread:

如果是Thread的模式,那么就会每个线程进行依次进行调试,依次进入各自的断点中。

例如如下程序:

public class Own {

    public static void main(String[] args) {
        TreadImpl t1 = new TreadImpl("t1");
        TreadImpl t2 = new TreadImpl("t2");
        Thread t3 = new Thread(()->{
                System.out.println(Thread.currentThread().getName()+"start");
                System.out.println(Thread.currentThread().getName()+"end");
        });
        t1.start();
        t2.start();
        t3.start();
    }

}

class TreadImpl extends Thread{
    public TreadImpl(String name){
        this.setName(name);
    }

    @Override
    public void run(){
        System.out.println(this.getName()+"start");
        try {
            this.sleep(100);
        } catch (InterruptedException e) {
            e.printstacktrace();
        }
        System.out.println(this.getName()+"end");
    }
}

使用All模式输出

t1start
t3start
t2start
t1end
t3end
t2end

此时会等待所有线程到达同一断点,再继续往下执行

使用Tread模式输出

t3start
t3end
t2start
t1start
t2end
t1end

此时每到达一个断点的线程就会不截断然后输出,依次遍历输出所有

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐