C++11獲取時間
C++11獲取時間
const std::string GetCurrentSystemTime()
{
auto t = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
struct tm* ptm = localtime(&t);
char date[60] = { 0 };
sprintf(date, "%d-%02d-%02d %02d:%02d:%02d",
(int)ptm->tm_year + 1900, (int)ptm->tm_mon + 1, (int)ptm->tm_mday,
(int)ptm->tm_hour, (int)ptm->tm_min, (int)ptm->tm_sec);
return move(std::string(date));
}
int main(int argc, char* argv[])
{
std::string strCurTime = GetCurrentSystemTime();
printf("當前時間: %s\n", strCurTime.c_str());
}
相關文章
- php 獲取時間差PHP
- JavaScript獲取時間戳JavaScript時間戳
- 獲取系統時間
- c++ 獲取當前時間周初凌晨時間戳(獲取當前時間週一凌晨時間戳)C++時間戳
- Java 獲取本地時間與網路時間Java
- mybatis獲取當前時間MyBatis
- QT獲取日期,時間,星期QT
- Qt:獲取日期和時間QT
- 安卓啟動時間獲取安卓
- java獲取當前時間Java
- Qt獲取當前時間QT
- Cookie 獲取訪問時間Cookie
- sql server獲取時間格式SQLServer
- js獲取當前時間JS
- java獲取日期和時間Java
- Qt 獲取當前時間QT
- python獲取網路時間和本地時間Python
- Laravel 獲取 13 位時間戳Laravel時間戳
- js獲取當天時間戳JS時間戳
- 前端獲取伺服器時間前端伺服器
- Javascript獲取伺服器時間JavaScript伺服器
- JavaScript獲取cookie過期時間JavaScriptCookie
- C#—獲取網路時間C#
- javascript如何獲取系統時間JavaScript
- linux shell獲取時間(2)Linux
- c/c++獲取時間戳C++時間戳
- Qt 獲取程式編譯時間QT編譯
- js獲取北京時間程式碼JS
- MySQL 時間戳的 獲取 & 轉換為特定時間格式MySql時間戳
- 使用Python獲取DNS解析時間和響應時間PythonDNS
- js獲取當前時間上一個月前的時間JS
- python獲取系統時間(時間函式詳解)Python函式
- Linux時間的獲取與使用Linux
- 常見的Javascript獲取時間戳JavaScript時間戳
- python 如何獲取當前時間Python
- curl 請求獲取響應時間
- 分享[ASP.NET]//獲取日期+時間ASP.NET
- JAVA獲取時間戳,哪個更快Java時間戳