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


457

C ++で現在の日付と時刻を取得するクロスプラットフォームの方法はありますか?


2
Ockonalがまだアクティブである場合、彼はC ++ 11アプローチへの受け入れられた回答を変更する必要があります。この質問はまだ多くの意見を得ているようです。
JSQuareD


3
@JSQuareDこの質問を今でもずっと見ていても、tm構造を使用したCのアプローチの方が良いと思います。C ++ 11のアプローチは、日付と時刻の取得についての質問でしたが、UNIXのタイムスタンプ(エポックからの時間)を提供するだけではありませんか?
anddero

わあ、この質問の再生回数は1,110,886回です。人々は本当にC ++を愛しています!
User123

回答:


595

C ++ 11では、 std::chrono::system_clock::now()

例(en.cppreference.comからコピー):

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

int main()
{
    auto start = std::chrono::system_clock::now();
    // Some computation here
    auto end = std::chrono::system_clock::now();

    std::chrono::duration<double> elapsed_seconds = end-start;
    std::time_t end_time = std::chrono::system_clock::to_time_t(end);

    std::cout << "finished computation at " << std::ctime(&end_time)
              << "elapsed time: " << elapsed_seconds.count() << "s\n";
}

これは次のように表示されます:

finished computation at Mon Oct  2 00:59:08 2017
elapsed time: 1.88232s

28
これは、現在のC ++で最も移植性が高く簡単な方法であるため、賛成する必要があります。
ヨハネス

4
@ヨハネス、ちょうど私のものを追加しました。この速度では、これが2017年8月15日16:31 UTCまでの最高の回答になるはずです:-)
Martin Broadhurst

62
この答えは、取得した値を使用する例がないとほとんど役に立ちません。たとえば、それをどのように印刷し、現地時間を取得し、他の日付/時刻と比較できますか?
2016

32
これが可能な最悪の答えです。他のc ++ 11が重複して回答するようになりますが、何も説明せず、「リンクのみ」です。
v010dya 2017年

10
この答え以上に要点を得る方法はありません。OPは、「C ++で現在の日付と時刻を取得するためのクロスプラットフォームの方法はありますか?」と尋ねていました。この質問はあなたに正確にこれを与えます。stringからを取得するstream方法、またはを適切にフォーマットする方法がわからない場合はtime_point<>、先に進んで、別の質問をするか、その後にGoogleで質問してください。
Tarc

482

C ++は、その日付/時刻関数をCと共有します。tm構造体は、おそらくC ++プログラマーにとって最も扱いやすいものです。以下は、今日の日付を出力します。

#include <ctime>
#include <iostream>

int main() {
    std::time_t t = std::time(0);   // get time now
    std::tm* now = std::localtime(&t);
    std::cout << (now->tm_year + 1900) << '-' 
         << (now->tm_mon + 1) << '-'
         <<  now->tm_mday
         << "\n";
}

26
ctime()日付文字列が必要な場合は、この回答と一緒に使用してください。
ralphtheninja

3
のインスタンスを削除するのはどうstruct tmですか?削除を呼び出すだけで可能ですか?
Petr 2014

4
@Petr newで割り当てられたメモリでのみdeleteを呼び出す必要があります。
iheanyi 2014

4
わかりましたが、それでもlocaltime()からポインターを取得するため、構造体インスタンスはヒープに割り当てられますか?つまり、何とかしない限り、クリーンアップされません。私はdeleteそれで(c ++キーワード)を使用することは決してありませんでした。どういうわけかそれを削除する必要があると思いました:)または誰があなたのためにそれを行うのですか?
Petr

9
それが静的に割り当てられているので、あなたがそれを解放する必要はありません@Petr、このトピックについてはこちらをご覧くださいstackoverflow.com/questions/8694365/...
Brandin

180

次のクロスプラットフォームコードを試して、現在の日付/時刻を取得できます。

#include <iostream>
#include <string>
#include <stdio.h>
#include <time.h>

// Get current date/time, format is YYYY-MM-DD.HH:mm:ss
const std::string currentDateTime() {
    time_t     now = time(0);
    struct tm  tstruct;
    char       buf[80];
    tstruct = *localtime(&now);
    // Visit http://en.cppreference.com/w/cpp/chrono/c/strftime
    // for more information about date/time format
    strftime(buf, sizeof(buf), "%Y-%m-%d.%X", &tstruct);

    return buf;
}

int main() {
    std::cout << "currentDateTime()=" << currentDateTime() << std::endl;
    getchar();  // wait for keyboard input
}

出力:

currentDateTime()=2012-05-06.21:47:59

日付/時刻形式の詳細については、こちらをご覧ください


こんにちは。関数「currentDateTime()」内のこの「buf」割り当てに少し問題があります。関数が戻った後、どのように持続するはずですか?THX。
LéaのMassiot

7
戻り値の型は "const std :: string"であるため、値によって返され、解放する前にバッファーのコピーが作成されます。
バランケロ2014

3
なぜconst値を返すのですか?それは無意味です。
オービットのライトネスレース2016年

プラス1はクロスプラットフォームソリューションです。
Ziagl 2018年

139

std Cライブラリはを提供しますtime()。これはエポックからの秒数であり、日付に変換でき、H:M:S標準のC関数を使用できます。Boostにはチェックできる日時ライブラリもあります。

time_t  timev;
time(&timev);

24
以下のanonの答えは、より良い構造を持ち、より良い例を提供します。
MDTech.us_MAN 2015

2
また、彼はC ++ではないC.について尋ねた
jterm

2
@jterm大丈夫、CとC ++はまったく同じ時間のライブラリを共有します。これは異なるインポート名の問題であり、それはそれです
Joseph Farah

31

C ++標準ライブラリは適切な日付タイプを提供しません。C ++は、Cから日付と時刻を操作するための構造体と関数を継承し、ローカリゼーションを考慮したいくつかの日付/時刻入出力関数を備えています。

// Current date/time based on current system
time_t now = time(0);

// Convert now to tm struct for local timezone
tm* localtm = localtime(&now);
cout << "The local date and time is: " << asctime(localtm) << endl;

// Convert now to tm struct for UTC
tm* gmtm = gmtime(&now);
if (gmtm != NULL) {
cout << "The UTC date and time is: " << asctime(gmtm) << endl;
}
else {
cerr << "Failed to get the UTC date and time" << endl;
return EXIT_FAILURE;
}

25

古い質問に対する新しい答え:

質問はどのタイムゾーンで指定しません。2つの合理的な可能性があります。

  1. UTCで。
  2. コンピュータのローカルタイムゾーン。

1の場合、この日付ライブラリと次のプログラムを使用できます。

#include "date.h"
#include <iostream>

int
main()
{
    using namespace date;
    using namespace std::chrono;
    std::cout << system_clock::now() << '\n';
}

これは私のためにちょうど出力します:

2015-08-18 22:08:18.944211

日付ライブラリは基本的に、のストリーミング演算子を追加するだけですstd::chrono::system_clock::time_point。また、他の多くの優れた機能も追加しますが、この単純なプログラムでは使用されません。

2(現地時間)を希望する場合は、日付ライブラリの上に構築するタイムゾーンライブラリがあります。コンパイラがC ++ 11またはC ++ 14をサポートしている場合、これらのライブラリはどちらもオープンソースクロスプラットフォームです

#include "tz.h"
#include <iostream>

int
main()
{
    using namespace date;
    using namespace std::chrono;
    auto local = make_zoned(current_zone(), system_clock::now());
    std::cout << local << '\n';
}

私にとってはこれを出力するだけです:

2015-08-18 18:08:18.944211 EDT

からの結果タイプmake_zonedはa date::zoned_timeとのペアであるdate::time_zonea std::chrono::system_clock::time_pointです。このペアは現地時間を表しますが、クエリ方法によってはUTCを表すこともあります。

上記の出力を見ると、私のコンピューターは現在、UTCオフセットが-4hで、略語がEDTのタイムゾーンにあることがわかります。

他のタイムゾーンが必要な場合は、それも実行できます。たとえば、オーストラリアのシドニーの現在時刻を検索するには、変数の構造を次のように変更しますlocal

auto local = make_zoned("Australia/Sydney", system_clock::now());

出力は次のように変わります。

2015-08-19 08:08:18.944211 AEST

C ++ 20の更新

このライブラリは現在、C ++ 20で主に採用されています。名前空間dateはなくなり、すべてが名前空間に入れられましたstd::chrono。そしてのzoned_time代わりに使用しmake_timeます。ヘッダー"date.h"をドロップして、"tz.h"そのまま使用します<chrono>

私がこれを書いているとき、部分的な実装がいくつかのプラットフォームで現れ始めたばかりです。


localtime私のタイムゾーンの時間を教えてはいけませんか?
Jonathan Mee

はい、localtimeしますほとんど常に秒の精度にあなたのローカルタイムゾーンで時間を与えます。スレッドセーフの問題が原因で失敗することもあり、1秒未満の精度では機能しません。
ハワードHinnant

19

(仲間のグーグルのために)

Boost :: date_timeもあります:

#include <boost/date_time/posix_time/posix_time.hpp>

boost::posix_time::ptime date_time = boost::posix_time::microsec_clock::universal_time();

16
auto time = std::time(nullptr);
std::cout << std::put_time(std::localtime(&time), "%F %T%z"); // ISO 8601 format.

std::time()またはstd::chrono::system_clock::now()(または別のクロックタイプ)を使用して現在の時刻を取得します。

std::put_time()(C ++ 11)およびstrftime()(C)は、それらの時間を出力するための多くのフォーマッターを提供します。

#include <iomanip>
#include <iostream>

int main() {
    auto time = std::time(nullptr);
    std::cout
        // ISO 8601: %Y-%m-%d %H:%M:%S, e.g. 2017-07-31 00:42:00+0200.
        << std::put_time(std::gmtime(&time), "%F %T%z") << '\n'
        // %m/%d/%y, e.g. 07/31/17
        << std::put_time(std::gmtime(&time), "%D"); 
}

フォーマッタの順序は重要です。

std::cout << std::put_time(std::gmtime(&time), "%c %A %Z") << std::endl;
// Mon Jul 31 00:00:42 2017 Monday GMT
std::cout << std::put_time(std::gmtime(&time), "%Z %c %A") << std::endl;
// GMT Mon Jul 31 00:00:42 2017 Monday

のフォーマッタstrftime()は似ています。

char output[100];
if (std::strftime(output, sizeof(output), "%F", std::gmtime(&time))) {
    std::cout << output << '\n'; // %Y-%m-%d, e.g. 2017-07-31
}

多くの場合、大文字のフォーマッターは「完全版」を意味し、小文字は省略形を意味します(例:Y:2017、y:17)。


ロケール設定は出力を変更します:

#include <iomanip>
#include <iostream>
int main() {
    auto time = std::time(nullptr);
    std::cout << "undef: " << std::put_time(std::gmtime(&time), "%c") << '\n';
    std::cout.imbue(std::locale("en_US.utf8"));
    std::cout << "en_US: " << std::put_time(std::gmtime(&time), "%c") << '\n';
    std::cout.imbue(std::locale("en_GB.utf8"));
    std::cout << "en_GB: " << std::put_time(std::gmtime(&time), "%c") << '\n';
    std::cout.imbue(std::locale("de_DE.utf8"));
    std::cout << "de_DE: " << std::put_time(std::gmtime(&time), "%c") << '\n';
    std::cout.imbue(std::locale("ja_JP.utf8"));
    std::cout << "ja_JP: " << std::put_time(std::gmtime(&time), "%c") << '\n';
    std::cout.imbue(std::locale("ru_RU.utf8"));
    std::cout << "ru_RU: " << std::put_time(std::gmtime(&time), "%c");        
}

可能な出力(Coliruコンパイラエクスプローラ):

undef: Tue Aug  1 08:29:30 2017
en_US: Tue 01 Aug 2017 08:29:30 AM GMT
en_GB: Tue 01 Aug 2017 08:29:30 GMT
de_DE: Di 01 Aug 2017 08:29:30 GMT
ja_JP: 2017年08月01日 08時29分30秒
ru_RU: Вт 01 авг 2017 08:29:30

私はstd::gmtime()UTCへの変換に使用しました。std::localtime()現地時間に変換するために提供されています。

ことを留意asctime()/ ctime()廃止ととして他の回答に記載されたマークされているstrftime()優先されなければなりません。


14
#include <stdio.h>
#include <time.h>

int main ()
{
  time_t rawtime;
  struct tm * timeinfo;

  time ( &rawtime );
  timeinfo = localtime ( &rawtime );
  printf ( "Current local time and date: %s", asctime (timeinfo) );

  return 0;
} 

12

はい、現在実装されているロケールで指定されているフォーマットルールを使用して行うことができます。

#include <iostream>
#include <iterator>
#include <string>

class timefmt
{
public:
    timefmt(std::string fmt)
        : format(fmt) { }

    friend std::ostream& operator <<(std::ostream &, timefmt const &);

private:
    std::string format;
};

std::ostream& operator <<(std::ostream& os, timefmt const& mt)
{
    std::ostream::sentry s(os);

    if (s)
    {
        std::time_t t = std::time(0);
        std::tm const* tm = std::localtime(&t);
        std::ostreambuf_iterator<char> out(os);

        std::use_facet<std::time_put<char>>(os.getloc())
            .put(out, os, os.fill(),
                 tm, &mt.format[0], &mt.format[0] + mt.format.size());
    }

    os.width(0);

    return os;
}

int main()
{
    std::cout << timefmt("%c");
}

出力: Fri Sep 6 20:33:31 2013


1
ロケール設定を尊重する唯一の方法であり、細部に注意を払ってプログラムされているため(これはあまり見ostream::sentryられません)、これがIMHOが実際に最良の答えです。
DevSolar 2013年

@DevSolarありがとう。それが最高だとは言いませんが。私はより良い実装を見てきました。しかし、これは例としては十分だと思います:)
0x499602D2 2013年

コンパイルできませんでした。初心者である理由についてはコメントできません。
historystamp 2013年

8

C ++ 11時間クラスを使用できます。

    #include <iostream>
    #include <iomanip>
    using namespace std;

    int main() {

       time_t now = chrono::system_clock::to_time_t(chrono::system_clock::now());
       cout << put_time(localtime(&now), "%F %T") <<  endl;
      return 0;
     }

出力:

2017-08-25 12:30:08

6

__TIMESTAMP__プリプロセッサマクロは常に存在します。

#include <iostream>

using namespace std

void printBuildDateTime () {
    cout << __TIMESTAMP__ << endl;
}

int main() {
    printBuildDateTime();
}

例:2014年4月13日11:28:08


27
TIMESTAMPは、現在の時刻ではなく、ファイルが作成された時刻を提供するため、これは機能しません。
2014

3
私はC ++の質問に答えるために装備感じた理由はこれを振り返ってみると、私は考えている
ジェームズ・ロバート・アルバート

1
__TIMESTAMP__Ddd Mmm Date hh :: mm :: ss yyyyの形式で現在の時刻(コンパイル時)に展開されるプリプロセッサマクロです。__TIMESTAMP__マクロは、バイナリが構築された特定の瞬間についての情報を提供するために使用することができます。参照:cprogramming.com/reference/preprocessor
__TIMESTAMP__

4

直接使用することもできますctime()

#include <stdio.h>
#include <time.h>

int main ()
{
  time_t rawtime;
  struct tm * timeinfo;

  time ( &rawtime );
  printf ( "Current local time and date: %s", ctime (&rawtime) );

  return 0;
} 

4
VS2012では#define _CRT_SECURE_NO_DEPRECATE、プログラムをコンパイルするためにインクルードの前に追加する必要があります
javapowered 2013年

4

このリンクが私の実装に非常に役立つことがわかりました: C ++の日付と時刻

これが私の実装で使用するコードで、明確な「YYYYMMDD HHMMSS」出力形式を取得します。のパラメータは、UTCと現地時間を切り替えるためのものです。必要に応じてコードを簡単に変更できます。

#include <iostream>
#include <ctime>

using namespace std;

/**
 * This function gets the current date time
 * @param useLocalTime true if want to use local time, default to false (UTC)
 * @return current datetime in the format of "YYYYMMDD HHMMSS"
 */

string getCurrentDateTime(bool useLocalTime) {
    stringstream currentDateTime;
    // current date/time based on current system
    time_t ttNow = time(0);
    tm * ptmNow;

    if (useLocalTime)
        ptmNow = localtime(&ttNow);
    else
        ptmNow = gmtime(&ttNow);

    currentDateTime << 1900 + ptmNow->tm_year;

    //month
    if (ptmNow->tm_mon < 9)
        //Fill in the leading 0 if less than 10
        currentDateTime << "0" << 1 + ptmNow->tm_mon;
    else
        currentDateTime << (1 + ptmNow->tm_mon);

    //day
    if (ptmNow->tm_mday < 10)
        currentDateTime << "0" << ptmNow->tm_mday << " ";
    else
        currentDateTime <<  ptmNow->tm_mday << " ";

    //hour
    if (ptmNow->tm_hour < 10)
        currentDateTime << "0" << ptmNow->tm_hour;
    else
        currentDateTime << ptmNow->tm_hour;

    //min
    if (ptmNow->tm_min < 10)
        currentDateTime << "0" << ptmNow->tm_min;
    else
        currentDateTime << ptmNow->tm_min;

    //sec
    if (ptmNow->tm_sec < 10)
        currentDateTime << "0" << ptmNow->tm_sec;
    else
        currentDateTime << ptmNow->tm_sec;


    return currentDateTime.str();
}

出力(UTC、EST):

20161123 000454
20161122 190454

なぜあなたはそうではptmNow->tm_day < 9ないの<10かと尋ねましたか?
STF 2017

私たちのデザインに合わせるために、9未満の日(たとえばX日)を0X(つまり、1-> 01、9-> 09)にして、スペースを埋めたいと思います。文字列では、10日目を単に10にすることができます。
ジョー

それはだ場合は、依頼する必要があるので、<=9あなたはまた、9含めたいので
STF

1+コードにaがあることに注意してください。日/月は0から始まります。
ジョー・

月は0から始まりますが、日は1から始まります。
STF 2017年

3

これはG ++で動作します。これが役立つかどうかはわかりません。プログラム出力:

The current time is 11:43:41 am
The current date is 6-18-2015 June Wednesday 
Day of month is 17 and the Month of year is 6,
also the day of year is 167 & our Weekday is 3.
The current year is 2015.

コード:

#include <ctime>
#include <iostream>
#include <string>
#include <stdio.h>
#include <time.h>

using namespace std;

const std::string currentTime() {
time_t now = time(0);
struct tm tstruct;
char buf[80];
tstruct = *localtime(&now);
strftime(buf, sizeof(buf), "%H:%M:%S %P", &tstruct);
return buf;
}

const std::string currentDate() {
time_t now = time(0);
struct tm tstruct;
char buf[80];
tstruct = *localtime(&now);
strftime(buf, sizeof(buf), "%B %A ", &tstruct);
return buf;
}

int main() {
    cout << "\033[2J\033[1;1H"; 
std:cout << "The current time is " << currentTime() << std::endl;
    time_t t = time(0);   // get time now
    struct tm * now = localtime( & t );
    cout << "The current date is " << now->tm_mon + 1 << '-' 
         << (now->tm_mday  + 1) << '-'
         <<  (now->tm_year + 1900) 
         << " " << currentDate() << endl; 

 cout << "Day of month is " << (now->tm_mday) 
      << " and the Month of year is " << (now->tm_mon)+1 << "," << endl;
    cout << "also the day of year is " << (now->tm_yday) 
         << " & our Weekday is " << (now->tm_wday) << "." << endl;
    cout << "The current year is " << (now->tm_year)+1900 << "." 
         << endl;
 return 0;  
}

これは良い例ですが、「strftime(buf、sizeof(buf)、 "%H:%M:%S%P"、&tstruct);」という行です。%Pを%pに変換する必要があります(最新のものは標準です。大文字のものはMSVC 2015でアサーションを引き起こします)。
フェルナンドゴンザレスサンチェス

3

これは、g ++とOpenMPをターゲットとするLinux(RHEL)およびWindows(x64)でコンパイルされました。

#include <ctime>
#include <iostream>
#include <string>
#include <locale>

////////////////////////////////////////////////////////////////////////////////
//
//  Reports a time-stamped update to the console; format is:
//       Name: Update: Year-Month-Day_of_Month Hour:Minute:Second
//
////////////////////////////////////////////////////////////////////////////////
//
//  [string] strName  :  name of the update object
//  [string] strUpdate:  update descripton
//          
////////////////////////////////////////////////////////////////////////////////

void ReportTimeStamp(string strName, string strUpdate)
{
    try
    {
        #ifdef _WIN64
            //  Current time
            const time_t tStart = time(0);
            //  Current time structure
            struct tm tmStart;

            localtime_s(&tmStart, &tStart);

            //  Report
            cout << strName << ": " << strUpdate << ": " << (1900 + tmStart.tm_year) << "-" << tmStart.tm_mon << "-" << tmStart.tm_mday << " " << tmStart.tm_hour << ":" << tmStart.tm_min << ":" << tmStart.tm_sec << "\n\n";
        #else
            //  Current time
            const time_t tStart = time(0);
            //  Current time structure
            struct tm* tmStart;

            tmStart = localtime(&tStart);

            //  Report
            cout << strName << ": " << strUpdate << ": " << (1900 + tmStart->tm_year) << "-" << tmStart->tm_mon << "-" << tmStart->tm_mday << " " << tmStart->tm_hour << ":" << tmStart->tm_min << ":" << tmStart->tm_sec << "\n\n";
        #endif

    }
    catch (exception ex)
    {
        cout << "ERROR [ReportTimeStamp] Exception Code:  " << ex.what() << "\n";
    }

    return;
}

3

次のコードを使用して、C ++現在のシステムの日付時刻を取得できます。

    #include <iostream>
    #include <time.h> //It may be #include <ctime> or any other header file depending upon
                     // compiler or IDE you're using 
    using namespace std;

    int main() {
       // current date/time based on current system
       time_t now = time(0);

       // convert now to string form
       string dt = ctime(&now);

       cout << "The local date and time is: " << dt << endl;
    return 0;
    }

PS: 詳細については、このサイトにアクセスしてください。


2

ffead-CPPは、さまざまなタスクのための複数のユーティリティクラスを提供し、そのようなクラスがある日の日付計算に右の日付操作からの多くの機能を提供するクラスは、もありますタイマーのタイミング操作のために提供されるクラス。あなたも同じように見ることができます。


2

http://www.cplusplus.com/reference/ctime/strftime/

この組み込みは、合理的なオプションのセットを提供するようです。


1
確かに、time_t rawTime; time(&rawTime); struct tm *timeInfo; char buf[80]; timeInfo = localtime(&rawTime); strftime(buf, 80, "%T", timeInfo); これはHH:MM:SSを置くだけです。私の最初の投稿なので、コード形式を正しく取得する方法がわかりません。申し訳ありません。
bduhbya 2014

1

localtime_s()バージョン:

#include <stdio.h>
#include <time.h>

int main ()
{
  time_t current_time;
  struct tm  local_time;

  time ( &current_time );
  localtime_s(&local_time, &current_time);

  int Year   = local_time.tm_year + 1900;
  int Month  = local_time.tm_mon + 1;
  int Day    = local_time.tm_mday;

  int Hour   = local_time.tm_hour;
  int Min    = local_time.tm_min;
  int Sec    = local_time.tm_sec;

  return 0;
} 

1
#include <iostream>
#include <chrono>
#include <string>
#pragma warning(disable: 4996)
// Ver: C++ 17 
// IDE: Visual Studio
int main() {
    using namespace std; 
    using namespace chrono;
    time_point tp = system_clock::now();
    time_t tt = system_clock::to_time_t(tp);
    cout << "Current time: " << ctime(&tt) << endl;
    return 0;
}

0
#include <Windows.h>

void main()
{
     //Following is a structure to store date / time

SYSTEMTIME SystemTime, LocalTime;

    //To get the local time

int loctime = GetLocalTime(&LocalTime);

    //To get the system time

int systime = GetSystemTime(&SystemTime)

}

5
質問はクロスプラットフォームを要求します。Windows.hはWindows固有であり、void main標準のC / C ++でもありません。
derpface

0

あなたは使うことができますboost

#include <boost/date_time/gregorian/gregorian.hpp>
#include <iostream>
using namespace boost::gregorian;

int main()
{
    date d = day_clock::universal_day();
    std::cout << d.day() << " " << d.month() << " " << d.year();
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.