赞
踩
注意:我们要知道暂停监听是要让某一段代码停止执行,而不不是去关闭线程,可以认为线程一旦关闭就只能下次运行时再开启
1. 创建一个“暂停按钮”
JButton BuSwitch=new JButton("停");
this.add(BuSwitch);
2. 确定要暂停的对象
我们需要暂停的是这个去启动线程的画图对象dt;
3. 为按钮创建监听
//给stop按键加监听
BuSwitch.addActionListener(new ActionListener() {
public void actionPerformed(<
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。