英文:
Does System.nanotime leap back or forward
问题
我在互联网上找到了多个(相互矛盾的)关于System.Nanotime是否会“向后或向前跳跃”的来源。
我找到的一些来源表明,时钟重置不会影响System.nanotime。
但是服务器重新启动会改变system.nanotime吗?
是否存在System.Nanotime会向后或向前跳跃的情况?
具体来说:我将使用GO的Ticker,它在内部依赖nanotime。
英文:
I found multiple (conflicting) sources on the internet about whether System.Nanotime does or does not "leap back\forward"
I found sources to indicate that clock resets do not affect System.nanotime.
But do server restarts change system.nanotime?
Are there situations in which System.Nanotime does leap back or forward?
To be specific: I will be using GO's Ticker which internally relies on nanotime
答案1
得分: 1
Go在Linux、FreeBSD、OpenBSD、DragonflyBSD和Windows上使用单调定时器。
英文:
Go uses monotonic timers for Linux, FreeBSD, OpenBSD, DragonflyBSD, and Windows.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论