首页 > 编程语言 > 详细

线程的中断

时间:2019-04-03 17:50:00      阅读:169      评论:0      收藏:0      [点我收藏+]
public class JoinTest extends JFrame {

    private Thread threadA;
    final JProgressBar progressBar = new JProgressBar();

    public JoinTest() {
        // TODO Auto-generated constructor stub
        getContentPane().add(progressBar, BorderLayout.NORTH);
        progressBar.setStringPainted(true);

        threadA = new Thread(new Runnable() {
            int count = 0;

            public void run() {
                while (true) {
                    progressBar.setValue(++count);
                    try {
                        Thread.sleep(100);
                    } catch (InterruptedException e) {
                        // TODO: handle exception
                        System.out.println("当前线程序被中断");
                        break;
                    }
                }
            }
        });
        threadA.start();
        threadA.interrupt();
    }
    public static void init(JFrame frame,int width,int height) {
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(width, height);
        frame.setVisible(true);
    }
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        init(new JoinTest(), 100, 100);
    }

}

 

线程的中断

原文:https://www.cnblogs.com/dulute/p/10650428.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!