如何为特定的小时和分钟创建 Timer.schedule() ?
我试图让 schedule()
方法等到特定的小时和分钟 来并开始执行任务但没有成功 因为方法 schedule()
不需要花费几小时和几分钟 作为一个论点,这个方法的替代品是什么?我应该制定几个小时的时间表 那么当时间到的时候程序会检查分钟吗?那么如果两者都正确 它会开始执行还是什么?
聚苯乙烯 为了使事情更容易理解,如何制作与此类似的东西 :
schedule(new TimerClass(),所需时间,所需分钟)?
i tried to make the schedule()
method wait till a specific hour and minute
comes and start to execute the task but it didnt work
because the method schedule()
doesnt take hours and minutes
as an argument, what is the replacment for this method? i'm i supposed make schedule for hours
then when the hour comes the program check the minutes? then if both are correct
it will start executing or what?
P.S
for making things easier to understand, how to make something similier to this
:
schedule(new TimerClass(), desired hours, desired minutes)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想安排特定的时钟时间(而不是从当前时间延迟),这里有一些选项:
If you want to schedule for a particular clock time (rather than a delay from current time), here are some options:
您不需要这样的硬编码。测试一小时然后几分钟。只需按如下所示安排任务即可。
下面给出的任务将在一小时后执行,并且每 30000ms 重复一次。如果您只需要执行一次,请像使用 t.cancel() 一样取消第一次执行后的时间,并将小时+分钟转换为毫秒以放置计划时间
You don't need to such a hardcoding.Testing hour then minutes.Just schedule the task like below.
The task given below will execute after one hour and will be repeated in each 30000ms.If you need execution only once then cancel the time after first execution like using t.cancel() and also convert Hour+minute to ms to put the scheduled time