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++ 中获取时间。但是我只知道在几秒钟内获得时间的方法是这样的:
#include <ctime> ... time = ctime(0) ; ...
我想知道如何做类似的操作来获得毫秒或纳秒的时间。我应该包含哪些标题,要调用哪些函数以及它们的参数是什么?
如果您对特定于平台的实现(Windows)没问题,请查看QueryPerformanceCounter API。
这个答案有一个简单的用法示例。