วิธีรับเวลาและวันที่ปัจจุบันใน C ++


458

มีวิธีข้ามแพลตฟอร์มเพื่อรับวันที่และเวลาปัจจุบันใน C ++ หรือไม่


2
หาก Ockonal ยังคงทำงานอยู่เขาควรเปลี่ยนคำตอบที่ยอมรับเป็นวิธีการ C ++ 11 คำถามนี้ยังดูเหมือนว่าจะได้รับมุมมองจำนวนมาก
JSQuareD


3
@JSQuareD แม้มองคำถามนี้หลังจากนี้ตลอดเวลาฉันพบวิธี C ที่ดีขึ้นโดยใช้tmโครงสร้าง วิธี C ++ 11 ไม่เพียงให้ timestamp unix (เวลานับตั้งแต่ยุค) ถึงแม้ว่าคำถามเกี่ยวกับการรับวันที่และเวลา?
anddero

ว้าวคำถามนี้มีมุมมอง 1,110,886 ครั้ง! ผู้คนรัก C ++ จริง ๆ !
User123

คำตอบ:


596

ใน 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
@Johannes เพิ่งเพิ่มระเบิด ในอัตรานี้ควรเป็นคำตอบที่ดีที่สุดภายในวันที่ 15 สิงหาคม 2017 เวลา 16:31 UTC :-)
Martin Broadhurst

62
คำตอบนี้ใช้น้อยมากโดยไม่มีตัวอย่างการใช้ค่าที่ได้รับ เช่นคุณจะพิมพ์รับเวลาท้องถิ่นเปรียบเทียบกับวันที่ / เวลาอื่นได้อย่างไร
ม้า

32
นี่คือคำตอบที่เลวร้ายที่สุดที่เป็นไปได้ มันทำให้ c ++ 11 อื่น ๆ ตอบซ้ำและยังไม่ได้อธิบายอะไรเลยว่าเป็น 'ลิงก์เท่านั้น'
v010dya

10
ไม่มีทางที่จะได้คะแนนมากไปกว่าคำตอบนี้ OP ถามว่า "มีวิธีข้ามแพลตฟอร์มเพื่อรับวันที่และเวลาปัจจุบันใน C ++ หรือไม่" คำถามนี้ให้คุณอย่างนี้ หากคุณมีข้อสงสัยเกี่ยวกับวิธีการรับstringจากstreamหรือวิธีการจัดรูปแบบที่ถูกต้องให้time_point<>ไปข้างหน้าและถามคำถามอื่นหรือ google หลังจากนั้น
Tarc

483

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

4
@Petr คุณจะต้องโทรลบหน่วยความจำที่จัดสรรด้วยใหม่
iheanyi

4
โอเค แต่คุณยังคงได้รับพอยน์เตอร์จาก localtime () ดังนั้นอินสแตนซ์โครงสร้างจะได้รับการจัดสรรในฮีปหรือไม่? ซึ่งหมายความว่าจะไม่ได้รับการทำความสะอาดเว้นแต่คุณจะทำอย่างใด ฉันไม่เคยบอกว่าใช้delete(คำหลัก c ++) กับมันฉันแค่คิดว่ามันควรจะถูกลบอย่างใด :) หรือผู้ที่จะทำเช่นนั้นสำหรับคุณ?
Petr

9
@Petr คุณไม่จำเป็นต้องยกเลิกการจัดสรรเนื่องจากมีการจัดสรรแบบคงที่ดูที่นี่สำหรับหัวข้อนี้stackoverflow.com/questions/8694365/
......

181

คุณสามารถลองใช้รหัสข้ามแพลตฟอร์มต่อไปนี้เพื่อรับวันที่ / เวลาปัจจุบัน:

#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

กรุณาเยี่ยมชม ที่นี่สำหรับข้อมูลเพิ่มเติมเกี่ยวกับรูปแบบวันที่ / เวลา


สวัสดี. ฉันมีปัญหาเล็กน้อยกับการจัดสรร "buf" นี้ภายในฟังก์ชัน "currentDateTime ()" มันควรจะคงอยู่อย่างไรหลังจากฟังก์ชั่นกลับมา? ขอบคุณ.
Léa Massiot

7
ชนิดส่งคืนคือ "const std :: string" ดังนั้นจึงถูกส่งคืนโดยค่าจากนั้นจึงสร้างสำเนาของบัฟเฟอร์ก่อนปล่อย
barranquero

3
ทำไมต้องส่งคืนconstค่า มันไม่มีจุดมุ่งหมาย
การแข่งขัน Lightness ใน Orbit

บวก 1 สำหรับโซลูชันข้ามแพลตฟอร์ม!
Ziagl

139

ห้องสมุดมาตรฐาน C time()ให้ นี่คือวินาทีจากยุคและสามารถแปลงเป็นวันที่และH:M:Sใช้ฟังก์ชั่น C มาตรฐาน Boostยังมีไลบรารีเวลา / วันที่ที่คุณสามารถตรวจสอบได้

time_t  timev;
time(&timev);

24
คำตอบของอานนท์ด้านล่างมีโครงสร้างที่ดีขึ้นและเป็นตัวอย่างที่ดีกว่า
MDTech.us_MAN

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

คำตอบใหม่สำหรับคำถามเก่า:

คำถามไม่ได้ระบุในเขตเวลาใด มีความเป็นไปได้ที่สมเหตุสมผลสองประการ:

  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เป็นdate::zoned_timeซึ่งเป็นคู่ของและdate::time_zone 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 เป็นส่วนใหญ่ namespace dateหายไปและทุกอย่างอยู่ใน namespace std::chronoทันที และใช้ในสถานที่ของzoned_time make_timeวางส่วนหัว"date.h"และและการใช้งานเพียงแค่"tz.h"<chrono>

ขณะที่ฉันเขียนสิ่งนี้การใช้งานบางส่วนเพิ่งจะเริ่มปรากฏขึ้นในบางแพลตฟอร์ม


ไม่ควรlocaltimeให้เวลากับฉันในเขตเวลาของฉัน?
Jonathan Mee

ใช่localtimeจะเกือบเสมอให้คุณมีเวลาในเขตเวลาท้องถิ่นของคุณเพื่อความแม่นยำที่สอง บางครั้งมันจะล้มเหลวเนื่องจากปัญหา threadsafety และมันจะไม่ทำงานเพื่อความแม่นยำรอง
Howard Hinnant

19

(สำหรับเพื่อนชาว Google)

นอกจากนี้ยังมี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"); 
}

ลำดับของ formatters สำคัญ:

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 , Compiler Explorer ):

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
นี่คือ IMHO ที่จริงแล้วเป็นคำตอบที่ดีที่สุดเพราะเป็นเพียงคำเดียวที่ให้การตั้งค่าสถานที่และเนื่องจากมีการตั้งโปรแกรมด้วยความใส่ใจในรายละเอียด (คุณไม่เห็นostream::sentryบ่อยครั้ง)
DevSolar

@DevSolar ขอบคุณ ฉันจะไม่บอกว่ามันดีที่สุด ฉันเห็นการใช้งานที่ดีขึ้น แต่ฉันคิดว่านี่เพียงพอสำหรับตัวอย่าง :)
0x499602D2

ไม่ได้รวบรวมสำหรับฉัน การเป็นสามเณรฉันไม่สามารถให้ความเห็นว่าทำไม
historystamp

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();
}

ตัวอย่าง: อา. 13 เม.ย. 11:28:08 น


27
สิ่งนี้จะไม่ทำงานเนื่องจากTIMESTAMPจะให้เวลาเมื่อสร้างไฟล์มากกว่าเวลาปัจจุบัน
feelfree

3
มองย้อนกลับไปที่นี้ฉันไม่รู้ว่าทำไมฉันถึงรู้สึกพร้อมที่จะตอบคำถาม C ++
James Robert Albert

1
__TIMESTAMP__เป็นแมโครตัวประมวลผลล่วงหน้าที่ขยายเวลาปัจจุบัน (ณ เวลารวบรวม) ในรูปแบบ Ddd Mmm Date hh :: mm :: ss yyyy __TIMESTAMP__แมโครสามารถใช้ในการให้ข้อมูลเกี่ยวกับช่วงเวลาโดยเฉพาะอย่างยิ่งไบนารีที่ถูกสร้างขึ้น อ้างอิง: cprogramming.com/reference/preprocessor/__TIMESTAMP__.html
selfboot

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

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

ฉันต้องการวัน (พูดวัน X) น้อยกว่า 9 เป็น 0X (เช่น 1 -> 01, 9 -> 09) เพื่อเติมเต็มพื้นที่เพื่อให้ตรงกับการออกแบบของเรา วันที่ 10 สามารถเป็น 10 ได้ในสตริง
โจ

ดังนั้นคุณต้องถามว่าเป็น<=9เพราะคุณต้องการรวม 9 หรือไม่
STF

หมายเหตุฉันมี1+รหัส วัน / เดือนเริ่มต้นที่ 0.
Joe

เดือนเริ่มต้นที่ 0 แต่วันเริ่มต้นที่ 1!
STF

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

สิ่งนี้ได้รวบรวมสำหรับฉันบน Linux (RHEL) และ Windows (x64) การกำหนดเป้าหมาย g ++ และ OpenMP:

#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

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.