java 线程 - 如何让一个线程每秒运行一次,并且最好在该线程中每 5 秒执行 1 个操作?
我有一个线程每秒运行一次 sleep 命令。这工作正常,但我也想让它每 5 秒执行某些操作。这两件事应该同时运行..我在第一个线程中启动第二个线程时遇到问题...
请问有什么帮助吗?
提前致谢!
I have a thread that runs each second with the sleep command. this works fine, but I'd like to have it do certain actions every 5 seconds too. Both things should run at the same time.. I've had problems starting a second thread in a first one...
any help please?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 http://download.oracle.com/ javase/6/docs/api/java/util/concurrent/ScheduledExecutorService.html。
See http://download.oracle.com/javase/6/docs/api/java/util/concurrent/ScheduledExecutorService.html.