web-dev-qa-db-ja.com

現在の日時を取得する方法は?

現在の日付d/m/yを取得する方法。たとえば、day=d; month=m; year=y;のように、1つではなく3つの異なる変数が必要です。

13
Wizard

Linuxの場合、 'localtime' 関数を使用します。

#include <time.h>

time_t theTime = time(NULL);
struct tm *aTime = localtime(&theTime);

int day = aTime->tm_mday;
int month = aTime->tm_mon + 1; // Month is 0 - 11, add 1 to get a jan-dec 1-12 concept
int year = aTime->tm_year + 1900; // Year is # years since 1900
26
Petesh

これがchronoの方法です(C++ 0x)-ライブで見るhttp://ideone.com/yFm9P

#include <chrono>
#include <ctime>
#include <iostream>

using namespace std;

typedef std::chrono::system_clock Clock;

int main()
{
    auto now = Clock::now();
    std::time_t now_c = Clock::to_time_t(now);
    struct tm *parts = std::localtime(&now_c);

    std::cout << 1900 + parts->tm_year  << std::endl;
    std::cout << 1    + parts->tm_mon   << std::endl;
    std::cout <<        parts->tm_mday  << std::endl;

    return 0;
}
12
sehe

ctime ライブラリは、このような機能を提供します。

this も確認してください。それはあなたのプラットフォームによってはあなたを助けるかもしれない他の投稿です。