每 10 分钟调用一次函数
我不是专家,只是初学者。 所以我恳请你为我写一些代码。
如果我有两个类,CLASS A
和 CLASS B
,并且在 CLASS B
内部有一个名为 funb()
的函数代码>. 我想每十分钟从CLASS A
调用这个函数。
你已经给了我一些想法,但我不太明白。
您可以发布一些示例代码吗?
I'm not an expert, just a beginner. So I kindly ask that you write some code for me.
If I have two classes, CLASS A
and CLASS B
, and inside CLASS B
there is a function called funb()
. I want to call this function from CLASS A
every ten minutes.
You have already given me some ideas, however I didn't quite understand.
Can you post some example code, please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
看一下 ScheduledExecutorService:
下面是一个类,其中的方法设置 ScheduledExecutorService 在一个小时内每十秒发出一次蜂鸣声:
Have a look at the ScheduledExecutorService:
Here is a class with a method that sets up a ScheduledExecutorService to beep every ten seconds for an hour:
尝试这个。 它将每隔设定的分钟重复一次 run() 函数。 要更改设置的分钟,请更改 MINUTES 变量
不要忘记进行导入!
欲了解更多信息,请访问此处:
Try this. It will repeat the run() function every set minutes. To change the set minutes, change the MINUTES variable
Don't forget to do the imports!
For more info, go here:
Java 8 的解决方案
Solution with Java 8