我试图编译这个示例程序使用GCC(测试版本4.5.1,4.6.3,4.8.4):
#include <iostream>
#include <iomanip>
#include <ctime>
#include <chrono>
using std::chrono::system_clock;
int main()
{
system_clock::time_point now = system_clock::now();
std::time_t now_c = system_clock::to_time_t(
now - std::chrono::hours(24));
std::cout << "One day ago, the time was "
<< std::put_time(std::localtime(&now_c), "%F %T") << '\n';
}
但它告诉我:
prog.cpp: In function 'int main()':
prog.cpp:14:18: error: 'put_time' is not a member of 'std'
我想,也许它尚未实现。 于是,我就检查该功能的执行情况。 我只找到了这个网页:
- http://gcc.gnu.org/projects/cxx0x.html
但我找不到任何音符put_time
或chrono
或一致好评。 任何人都可以指向我提供了关于这个库的执行情况信息的资源?