C++ 无法打开源文件 "time.h"
C++ cannot open source file "time.h"
我正在尝试使用时钟来测量 Visual Studio 2015 (x64) 中 运行 程序的时间,在调试 x64 模式下使用 C++ on Windows。
我在这些行中遇到错误:
#include <time.h>
#include <sys/timeb.h>
错误消息说:
cannot open source file "time.h"
cannot open source file "sys/timeb.h"
我必须添加什么路径来包含目录才能修复此错误?
你可以试试#include <ctime>
参考这个:http://www.cplusplus.com/reference/ctime/
time.h 使用的是 C 而不是 C++。
我正在尝试使用时钟来测量 Visual Studio 2015 (x64) 中 运行 程序的时间,在调试 x64 模式下使用 C++ on Windows。
我在这些行中遇到错误:
#include <time.h>
#include <sys/timeb.h>
错误消息说:
cannot open source file "time.h"
cannot open source file "sys/timeb.h"
我必须添加什么路径来包含目录才能修复此错误?
你可以试试#include <ctime>
参考这个:http://www.cplusplus.com/reference/ctime/
time.h 使用的是 C 而不是 C++。