- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在程序中使用方法scheduleAtFixedRate(Timer类)。它每秒运行一次,但有时此方法变得非常快(每秒执行 3 - 4 次)。
但是我在网络上做了一些研究,发现了这个:
从 Android 开发者页面复制:
With fixed-rate execution, the start time of each successive run of a task is scheduled without regard for when the previous run took place. This may result in a series of bunched-up runs (one launched immediately after another) if delays prevent the timer from starting tasks on time.
我需要固定计时器。它应该每 x 次仅运行一次,没有任何快速执行。有没有 ScheduleAtFixedRate 方法的替代方法,或者我需要对此方法感到满意?
最佳答案
可以考虑Timer类中的方法schedule,尽管它不能保证任务每'x'时间段执行一次。
public void schedule(TimerTask task, Date firstTime, long period)
至少不会像你说的那样重复执行。
关于java - ScheduleAtFixedRate 执行速度快,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14818427/
不知道这是不是一个正确的问题,但出于好奇,我想知道哪个会被快速搜索。例如- John 或 我已经存储了数百万个文本作为属性值,尽管字符大小不够大。以上只是为了更好地理解这个问题的一个
我有一张表,里面有大约 500,000 个用户。当我使用我的 Rails 3.0 控制台并输入 User.first 我立即得到结果。但是当我输入 User.first(1) 需要几秒钟。可能是什么原
我是一名优秀的程序员,十分优秀!