java - 请问我的这个线程要怎么停掉?
高洛峰
高洛峰 2017-04-17 17:26:28
0
1
607

因为是另外一个窗口调用了次类,所以使用JFrame.DISPOSE_ON_CLOSE以免把其他窗口都关了。但是退出的时候并没有把另外一个线程关掉。

public class ABC extends JFrame implements Runnable {
    public static void main(String[] args) {
        ABC abc= new ABC();
    }
    
    public ABC(){
        Thread thread = new Thread(this);    //此处的线程还在运行
        thread.start();
        
        this.setSize(600,430);
        this.setResizable(false);//固定窗体大小
        this.setLocationRelativeTo(null);//打开时相对window居中
        this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);    //此处会导致退出窗口后线程还在运行
        this.setVisible(true);
    }
    
    @Override
    public void run() {
        while (true){
            System.out.println("ABC");
            try {
                Thread.sleep(1000);
            }catch (Exception e){
                e.printStackTrace();
            }
        }
    }
}
高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

reply all(1)
黄舟

Make a switch.
For example, make a variable judgment on while, and modify the variable when the window exits to end the while.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template