C++ 中的gmtime() 函數將自紀元以來的給定時間轉換為日曆時間,日曆時間表示為 UTC 時間而不是本地時間。
gmtime() 在<ctime> 頭文件中定義。
gmtime() 原型
tm* gmtime(const time_t* time_ptr);
gmtime() 函數將 time_t
類型的指針作為其參數,並返回 tm
類型的指針對象。 gmtime() 函數返回的值是 GMT 時區的時間。
然後,可以分別使用tm_hour
, tm_min
和tm_sec
訪問小時、分鍾和秒。
參數:
time_ptr
:指向要轉換的 time_t 對象的指針。
返回:
- 成功時,gmtime() 函數返回一個指向
tm
對象的指針。 - 失敗時,返回一個空指針。
示例:gmtime() 函數如何工作?
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
time_t curr_time;
curr_time = time(NULL);
tm *tm_gmt = gmtime(&curr_time);
cout << "Current time : " << tm_gmt->tm_hour << ":" << tm_gmt->tm_min << ":" << tm_gmt->tm_sec << " GMT";
return 0;
}
運行程序時,輸出將是:
Current time : 13:26:28 GMT
相關用法
- C++ gmtime()用法及代碼示例
- C++ getline(string)用法及代碼示例
- C++ getchar()用法及代碼示例
- C++ getwchar()用法及代碼示例
- C++ getc()用法及代碼示例
- C++ get_allocator()用法及代碼示例
- C++ getenv()用法及代碼示例
- C++ getwc()用法及代碼示例
- C++ gets()用法及代碼示例
- C++ unordered_map cbegin用法及代碼示例
- C++ map lower_bound()用法及代碼示例
- C++ Unordered_multimap reserve()用法及代碼示例
- C++ list assign()用法及代碼示例
- C++ std::max()用法及代碼示例
- C++ std::string::push_back()用法及代碼示例
- C++ Array swap()用法及代碼示例
- C++ valarray cos用法及代碼示例
- C++ multimap key_comp()用法及代碼示例
- C++ Deque erase()用法及代碼示例
- C++ List cend()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ gmtime()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。