C++ 取得系统当前时间
Posted cappuccino的小窝
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 取得系统当前时间相关的知识,希望对你有一定的参考价值。
#include <time.h>
//* 方法一
time_t tt = time(NULL);//这句返回的只是一个时间cuo
tm* t= localtime(&tt);
printf("%d-%02d-%02d %02d:%02d:%02d\n",
t->tm_year + 1900,
t->tm_mon + 1,
t->tm_mday,
t->tm_hour,
t->tm_min,
t->tm_sec);
//* 方法二
SYSTEMTIME st = {0};
GetLocalTime(&st);
printf("%d-%02d-%02d %02d:%02d:%02d\n",
st.wYear,
st.wMonth,
st.wDay,
st.wHour,
st.wMinute,
st.wSecond);
下面几个,是网上找的:转载地址:http://apps.hi.baidu.com/share/detail/17815869
//* 方法一
time_t tt = time(NULL);//这句返回的只是一个时间cuo
tm* t= localtime(&tt);
printf("%d-%02d-%02d %02d:%02d:%02d\n",
t->tm_year + 1900,
t->tm_mon + 1,
t->tm_mday,
t->tm_hour,
t->tm_min,
t->tm_sec);
//* 方法二
SYSTEMTIME st = {0};
GetLocalTime(&st);
printf("%d-%02d-%02d %02d:%02d:%02d\n",
st.wYear,
st.wMonth,
st.wDay,
st.wHour,
st.wMinute,
st.wSecond);
下面几个,是网上找的:转载地址:http://apps.hi.baidu.com/share/detail/17815869
以上是关于C++ 取得系统当前时间的主要内容,如果未能解决你的问题,请参考以下文章