标题:关于Timer的使用
只看楼主
ll_rj
Rank: 1
等 级:新手上路
帖 子:21
专家分:0
注 册:2007-5-16
 问题点数:0 回复次数:2 
关于Timer的使用
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Date;
import javax.swing.Timer;

public class AnotherTimerExample{
    public static void main(String[] args){
        ActionListener taskAction=new ActionListener( ){
            public void actionPerformed(ActionEvent e) {
                System.out.println("Time::" + (new Date().toLocaleString()));
                //显示当前时间
            }
        };
        new Timer(1000,taskAction).start();//Timer每一秒轮转一次
        try {
            Thread.sleep(3 * 1000);//利用线程设定程序存在时间为3秒
        } catch (InterruptedException e1) {
            e1.printStackTrace();
        }
        System.exit(0);//结束程序进程
    }
}
这样一段代码,运行的结果显示如下:
Time::2008-4-10 22:35:19
Time::2008-4-10 22:35:19
Time::2008-4-10 22:35:20
可把
                  try {
        Thread.sleep(3 * 1000);//利用线程设定程序存在时间为3秒
        } catch (InterruptedException e1) {
            e1.printStackTrace();
        }
        System.exit(0);//结束程序进程
注释掉后,就没显示了。不知是为何?请指点。
另Timer的使用有要注意的地方吗?
搜索更多相关主题的帖子: Timer import java awt public 
2008-04-10 22:43
sunkaidong
Rank: 4
来 自:南京师范大学
等 级:贵宾
威 望:12
帖 子:4496
专家分:141
注 册:2006-12-28
得分:0 
new Timer()是记时程序,它是每1秒到了之后调用一次函数.如果你不暂停,还没到1秒主线程就被结束了.所以new Timer()被迫停下了..这就是为什么要暂停的原因...

[[it] 本帖最后由 sunkaidong 于 2008-4-10 23:03 编辑 [/it]]

学习需要安静。。海盗要重新来过。。
2008-04-10 22:58
ll_rj
Rank: 1
等 级:新手上路
帖 子:21
专家分:0
注 册:2007-5-16
得分:0 
sunkaidong 谢谢!
2008-04-11 13:23



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-208316-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.393495 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved