g++4.9는 여전히put 를 실현하지 못했다time

1220 단어
코드는 다음과 같습니다.
//io/timemanipulator1.cpp
#include <iostream>
#include <iomanip>
#include <chrono>
#include <cstdlib>
using namespace std;

int main() {
    //process and print current date and time:
    auto now = chrono::system_clock::now();
    time_t t = chrono::system_clock::to_time_t(now);
    tm* nowTM = localtime(&t);
    cout << put_time(nowTM,"date: %x
time:: %X
"
) << endl; //read date /* tm* date; cout << "new date: "; cin >> get_time(date, "%x"); //read date if(!cin) { cerr << "invalid format read" << endl; } */ }

g++4.9.3의 컴파일 결과:

좋은 웹페이지 즐겨찾기