我试图将该类包含在内,以衡量一段代码运行所需的时间。这些是我的包括:
#include <iostream>
#include <fstream>
#include <math.h>
#include <chrono>
using namespace std;
using namespace std::chrono;
我的错误信息是:
FILENAME.cpp:4: chrono: No such file or directory
我的代码有什么问题?
答案 0 :(得分:1)
从我的评论中: 您使用的是C ++ 11编译器吗?使用g ++,尝试给它&#34; -std = c ++ 11&#34;。
g++ -std=c++11 myfile.cpp
铿锵声可能是一样的。