java - timer.schedule方法必须等上一个任务执行完毕才能进行下一个任务吗?
高洛峰
高洛峰 2017-04-18 09:13:33
0
2
1198

timer.schedule方法必须等上一个任务执行完毕才能进行下一个任务吗?还是说如果上一个任务还没有执行结束,下一个任务也会启动。
如果任务在执行过程中发生异常,是不是会结束本次任务的执行。等下一次执行时间一到它还能执行任务吗?

高洛峰
高洛峰

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

reply all(2)
PHPzhong

Different timer instances schedule different tasks without affecting each other, and different tasks can be executed at the same time. The same timer instance schedules multiple tasks, and only one task is executed at the same time. You can write a small demo to verify it yourself.

左手右手慢动作

I believe you will have no doubts after reading this article: http://www.cnblogs.com/chenssy/p/3788407.html

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