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.
在 C 中,有没有办法使用 setitimer 启动计时器,然后暂停它,然后用暂停时剩余的时间恢复计时器?我最初的想法是通过使用 getitimer 来节省剩余的时间,停止计时器,然后将计时器设置回 getitimer 中保存的值,但这似乎不起作用。
您不能暂停计时器。保存剩余时间,停止计时器然后启动新计时器是执行此操作的方法。该方法确实有效,所以我猜您的代码中有错误。