- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在Windows 10上使用g++版本8.1.0,但仍在尝试编译时
auto start=high_resolution_clock::now();
rd(n);
auto stop=high_resolution_clock::now();
auto duration = duration_cast<microseconds>(stop-start);
cout<<duration.count()<<endl;
我得到的错误
error: 'high_resolution_clock' has not been declared
auto start=high_resolution_clock::now();
^~~~~~~~~~~~~~~~~~~~~
我已经包括了chrono和time.h
最佳答案
您需要在std::chrono::
,high_resolution_clock
和microseconds
前面指定duration_cast
命名空间限定符,例如:
#include <chrono>
auto start = std::chrono::high_resolution_clock::now();
rd(n);
auto stop = std::chrono::high_resolution_clock::now();
auto duration = std::chrono::duration_cast<std::chrono::microseconds>(stop-start);
std::cout << duration.count() << std::endl;
否则,您可以改用
using
语句,例如:
#include <chrono>
using namespace std::chrono;
auto start = high_resolution_clock::now();
rd(n);
auto stop = high_resolution_clock::now();
auto duration = duration_cast<microseconds>(stop-start);
std::cout << duration.count() << std::endl;
要么:
#include <chrono>
using std::chrono::high_resolution_clock;
using std::chrono::microseconds;
using std::chrono::duration_cast;
auto start = high_resolution_clock::now();
rd(n);
auto stop = high_resolution_clock::now();
auto duration = duration_cast<microseconds>(stop-start);
std::cout << duration.count() << std::endl;
关于c++ - 错误:尚未声明 'high_resolution_clock',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63533235/
我目前正在尝试计算 cpp 中循环的增量时间。目前我使用这段代码 #include int main() { typedef std::chrono::high_resolution_clock C
我从事的工作涉及基准测试算法。我读到了新的 C++11 中的 header ,所以我选择了它。 我可以进行测量和一切,但我在努力解决问题。 当做类似的事情时 auto duration = chro
我在Windows 10上使用g++版本8.1.0,但仍在尝试编译时 auto start=high_resolution_clock::now(); rd(n); auto stop=high_re
我希望能够用我的时钟类测量耗时(对于帧时间)。 (问题在代码下面描述。) 时钟.h typedef std::chrono::high_resolution_clock::time_point tim
所以我有一个程序以两种不同的方式计算多项式:Honrer 方法和 Naive 方法。我试图分别查看它们的运行时间,但根据我放置函数调用的顺序,它们的时间会发生变化。例如,我先放置 Horner 方法,
我正在开发一个类 Timer它的一些成员属于 high_resolution_clock::time_point 类型其中 time_point定义为 typedef chrono::time_poi
C++11 定义了high_resolution_clock,它的成员类型有period 和rep。但我不知道如何获得那个时钟的精确度。 或者,如果我可能无法达到精确度,我是否可以以某种方式至少获得滴
我正在尝试实现类似 MIDI 的时钟采样播放器。 有一个计时器,它增加脉冲计数器,每 480 个脉冲是一个四分之一,所以脉冲周期为 1041667 纳秒,每分钟 120 次。计时器不是基于 sleep
我正在学习 ,但我不明白一件事。 #include #include int main() { auto t1 = std::chrono::high_resolution_clock::
这个问题在这里已经有了答案: What are the uses of std::chrono::high_resolution_clock? (2 个答案) 关闭 5 年前。 所以我尝试使用 st
起初我认为它可以用于性能测量。但它是said std::chrono::high_resolution_clock 可能不稳定(is_steady 可能是 false)。也有人说 std::chron
让我通过这个测试程序问我的问题: #include #include using std::chrono::nanoseconds; using std::chrono::duration_cas
多年来,我一直在为帧计时器使用以下时钟定义: using frame_clock = std::conditional_t; 换句话说,我想要使用尽可能高的分辨率定义的时钟,但它必须单调递增。
我正在使用 boost::chrono::high_resolution_clock::now();有时得到: Boost::Chrono - Internal Error. 我的应用程序是多线程的,
我使用的是 visual studio 2012,想知道 high_resolution_clock 的准确性。 基本上我正在编写一些代码来显示声音和图像,但我需要它们非常同步,并且图像必须无撕裂。我
20.12.7.3 的 C++ 草案内容如下: high_resolution_clock may be a synonym for system_clock or steady_clock 当然这可
我一直在研究各种游戏计时循环方法,例如格伦·菲德勒和德维特。由于我自己的 C++ 知识有限,我发现关键区域很难理解。有了这个,我开始尝试实现我自己的方法……我想出了一个很好的方法来尝试理解这些方法。
我想分析我的 C++ 程序,并使用了 high_resolution_clock为了这个目的。作为示例提供了该问题的示例代码。我尝试了三种不同的方法。 示例 1 #include #include
我有以下代码可以正常工作: auto my_time = std::chrono::system_clock::now(); std::cout << "My Time is " << std::
我有自 Epoch 以来的纳秒数,我想将其打印为可读。 我在网上找到的例子time_point正在使用 system_clock然后转换为 std::time_t .但是,我正在使用 high_res
我是一名优秀的程序员,十分优秀!