Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
作为 iOS 的 NSTimer 调度程序,如何使 Android 中的多线程以静态频率运行?我想在每个固定时间运行一些功能。而 iOS(Cocoa 库)为此提供了 NSTimer 调度程序。
感谢您的阅读。
对于重复任务:
new Timer().scheduleAtFixedRate(task, after, interval);
对于任务的单次运行:
new Timer().schedule(task, after);
例如,
myTimer = new Timer(); myTimer.schedule(new TimerTask() { @Override public void run() { // do something } }, 0, 1000);