#1 楼
在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
评论
应该建议这样做,因为它是当前C ++中最可移植,最简单的方法。
–约翰内斯
2015年5月9日12:07
@Johannes,刚刚添加了我的。以这个速度,这应该是2017年8月15日世界标准时间16:31之前的最佳答案:-)
–马丁·布罗德赫斯特(Martin Broadhurst)
16-2-26在23:30
如果没有使用获得的值的示例,此答案几乎没有用。例如。如何打印,获取本地时间以及与其他日期/时间进行比较?
– Steed
16年8月24日在10:16
这是最糟糕的答案。它使其他c ++ 11回答重复,但它仅作为“链接”而没有解释。
– v010dya
17年3月14日在12:15
除了这个答案,没有其他方法可以达到目的。 OP正在问“是否有跨平台的方法来获取C ++中的当前日期和时间?”这个问题正是为您提供的。如果您对如何从流中获取字符串或如何正确设置time_point <>的格式有疑问,请继续询问其他问题,或者在它之后询问Google。
– Tarc
17年7月7日在17:02
#2 楼
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";
}
评论
如果需要日期字符串,请与此答案一起使用ctime()。
–ralphtheninja
09年6月15日在19:42
删除struct tm实例怎么办?
–石油
2014年8月8日13:59
@Petr您只需要在为new分配的内存上调用delete。
– iheanyi
14年8月15日在16:52
好的,但是您仍然从localtime()那里获得了一个指针,所以结构实例是否在堆上分配了?这意味着除非您以某种方式进行清洁,否则它不会被清洁。我从没说过使用delete(c ++关键字),我只是认为应该以某种方式将其删除:),或者谁会为您这样做?
–石油
2014年8月23日在9:46
@Petr您不需要取消分配它,因为它是静态分配的,请参阅此处以了解本主题stackoverflow.com/questions/8694365/…
–白兰地
14年8月29日在21:09
#3 楼
您可以尝试以下跨平台代码来获取当前日期/时间:#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”分配有一点问题。函数返回后应该如何持久?谢谢。
–LéaMassiot
14年6月16日在10:41
返回类型为“ const std :: string”,因此按值返回它,然后在释放缓冲区之前创建缓冲区的副本。
–巴兰克罗
2014年7月1日在8:17
为什么返回const值?那是没有目的的。
–轨道轻赛
16-10-28在11:15
加1用于跨平台解决方案!
–Ziagl
18年1月30日在9:40
#4 楼
std C库提供time()
。这是从纪元开始的几秒钟,可以使用标准C函数将其转换为日期和H:M:S
。 Boost还具有您可以检查的时间/日期库。time_t timev;
time(&timev);
评论
下面的匿名答案具有更好的结构并提供了更好的示例。
– MDTech.us_MAN
2015年4月19日在2:24
另外,他问的是C ++而不是C。
– jterm
17年6月1日在22:13
@jterm可以,C和C ++共享完全相同的时间库,只是导入名称不同而已
–约瑟法拉(Joseph Farah)
17年6月23日在15:03
#5 楼
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;
}
#6 楼
旧问题的新答案:问题未指定在哪个时区。有两种合理的可能性:
在UTC中。
在计算机的本地时区中。
对于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广泛采用。名称空间
date
消失了,现在所有内容都在名称空间std::chrono
中。并使用zoned_time
代替make_time
。删除标头"date.h"
和"tz.h"
并仅使用<chrono>
。在我撰写本文时,部分实现只是在某些平台上开始出现。
评论
当地时间不应该给我我所在时区的时间吗?
–乔纳森·梅(Jonathan Mee)
18年6月18日在20:26
是的,本地时间几乎总是会为您提供本地时区的时间,以秒为单位。有时它会由于线程安全性问题而失败,并且永远无法达到亚秒级精度。
– Howard Hinnant
18年6月18日在21:14
#7 楼
(对于其他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();
#8 楼
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)。 br />
区域设置更改输出:
#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()
。#9 楼
#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;
}
#10 楼
是的,您可以使用当前插入的语言环境指定的格式设置规则进行操作:#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
评论
恕我直言,这实际上是最好的答案,因为它是唯一使用语言环境设置的方法,并且因为它在编程时注重细节(您不会经常看到ostream :: sentry)。
–DevSolar
13-10-11在20:24
@DevSolar谢谢。我不会说这是最好的。我见过更好的实现。但是我认为这足以说明一个例子:)
– 0x499602D2
13-10-11在20:31
没有为我编译。作为新手,我无法评论为什么。
–historystamp
13年11月13日在16:47
#11 楼
您可以使用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
#12 楼
始终存在__TIMESTAMP__
预处理程序宏。#include <iostream>
using namespace std
void printBuildDateTime () {
cout << __TIMESTAMP__ << endl;
}
int main() {
printBuildDateTime();
}
示例:2014年4月13日星期日11:28:08
评论
这将不起作用,因为TIMESTAMP将给出创建文件的时间而不是当前时间。
–随意
2014年8月11日下午13:41
回顾这一点,我不知道为什么我感到有能力回答C ++问题
–詹姆斯·罗伯特·阿尔伯特
18年11月17日在3:42
__TIMESTAMP__是一个预处理程序宏,它以Ddd Mmm Date hh :: mm :: ss yyyy的形式扩展到当前时间(在编译时)。 __TIMESTAMP__宏可用于提供有关生成二进制文件的特定时刻的信息。请参阅:cprogramming.com/reference/preprocessor/__TIMESTAMP__.html
–selfboot
19年5月17日在1:55
#13 楼
您也可以直接使用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;
}
评论
在VS2012中,我必须在包含之前添加#define _CRT_SECURE_NO_DEPRECATE以使程序编译
–奥列格·瓦兹涅夫(Oleg Vazhnev)
13年5月4日在6:30
#14 楼
我发现此链接对我的实现非常有用: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
17-2-27在5:38
我希望小于9的一天(例如第X天)为0X(即1-> 01、9-> 09)来填充空间,以匹配我们的设计。第10天可以只是字符串中的10。
–乔
17-2-28在19:46
因此,您需要询问它是否<= 9,因为您还要包含9。
– STF
17 Mar 8 '17 at 5:21
注意我在代码中有一个1+。天/月从0开始。
–乔
17 Mar 9 '17 at 5:19
月份从0开始,而一天从1开始!
– STF
17 Mar 9 '17 at 6:54
#15 楼
您可以使用以下代码在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:请访问此网站以获取更多信息。
#16 楼
这适用于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 << "3[2J3[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中的断言)。
–费尔南多·冈萨雷斯·桑切斯(Fernando Gonzalez Sanchez)
16-10-28在23:58
#17 楼
这是在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;
}
#18 楼
ffead-cpp提供了多种实用程序类来执行各种任务,其中一个类是Date类,它提供了从Date操作到日期算术的许多功能,还有一个Timer类用于计时操作。您可以看一看。#19 楼
http://www.cplusplus.com/reference/ctime/strftime/此内置函数似乎提供了一组合理的选项。
评论
确定:time_t rawTime;时间(&rawTime); struct tm * timeInfo; char buf [80]; timeInfo = localtime(&rawTime); strftime(buf,80,“%T”,timeInfo);这个特定的只是放置HH:MM:SS。我的第一篇文章,所以我不确定如何正确设置代码格式。对于那个很抱歉。
–bduhbya
2014年8月7日在21:19
#20 楼
localtime_s()版本:#include <stdio.h>
#include <time.h>
int main ()
{
time_t current_time;
struct tm local_time;
time ( ¤t_time );
localtime_s(&local_time, ¤t_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;
}
#21 楼
#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;
}
#22 楼
#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)
}
评论
这个问题要求跨平台。 Windows.h是特定于Windows的,并且void main甚至不是标准的C / C ++。
–正面
2015年1月16日15:54
#23 楼
您可以使用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();
}
#24 楼
std :: ctime为什么到目前为止在评论中只提到ctime?
#include <ctime>
#include <iostream>
int main()
{
std::time_t result = std::time(nullptr);
std::cout << std::ctime(&result);
}
输出
Tue Dec 27 17:21:29 2011
评论
如果Ockonal仍处于活动状态,则应更改对C ++ 11方法的可接受答案。这个问题似乎仍然有很多看法。C版本:stackoverflow.com/questions/1442116/…
@JSQuareD即使经过了这么长时间,现在我仍然在看这个问题,我发现使用tm结构更好地使用C方法。尽管问题在于获取日期和时间,但C ++ 11方法不是仅给出unix时间戳(自纪元以来的时间)吗?
哇,这个问题有1,110,886意见!人们真的很喜欢C ++!