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.
我想使用 ctime 库在 C++ 中编写简单的应用程序。我正在获取实际时间并在循环中进行一些计算。对我来说非常重要的是用户可以在计算过程中修改操作系统时钟。如果用户更改了操作系统时钟,有什么方法可以了解我的应用程序内部吗?
提前寻求帮助。
PS。这个应用程序将在 Linux 操作系统上使用。
POSIX 有clock_gettime()函数,它可以让你访问一个单调的时钟(使用 CLOCK_MONOTONIC。)