我在新编译器上遇到了一个老问题。在尝试使用std::chrono
打印当前时间时,我收到以下错误:
src/main.cpp:51:30: error: ‘put_time’ is not a member of ‘std’
std::cout << std::put_time(std::localtime(&time), "%c") << "\n\n";
^~~
令人讨厌的片段并不特别:
#include <chrono>
...
auto time = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
std::cout << std::put_time(std::localtime(&time), "%c") << "\n\n";
这看起来非常像GCC 4.x系列中返回的错误,如同所引用的那样:
这个理论的唯一问题是我的GCC是现代的:
$ g++ --version
g++ (GCC) 6.3.1 20161221 (Red Hat 6.3.1-1)
Copyright (C) 2016 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
我还检查了我的应用程序是否链接到相应的库:
$ ldd build/myapp
...
libstdc++.so.6 => /lib64/libstdc++.so.6 (0x00007fde97e7b000)
libc.so.6 => /lib64/libc.so.6 (0x00007fde97595000)
最后,我的编译标志中没有任何异国情调:
g++ -g -Wall -Werror -std=c++11 -Wno-sign-compare src/main.cpp -c -o obj/main.o
我能想到检查的一切都表明这应该有效。那么,总之,是什么给出了?
答案 0 :(得分:5)
问题是你包含了错误的标题。 std::put_time
声明<iomanip>
,而非<chrono>
。
此外,它并未抱怨任何其他时间操作,例如
std::localtime
和to_time_t
。
std::localtime
在<ctime>
中声明。