當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ gmtime()用法及代碼示例


C++中的gmtime()函數更改時間,該時間指定為UTC(世界標準時間)時間(即GMT時區的時間)。 gmtime()在ctime頭文件中定義。

用法:

tm* gmtime ( const time_t* current_time )
  • 可以使用tm_hour訪問小時數
  • 可以使用tm_min訪問分鍾
  • 可以使用tm_sec訪問秒數

參數:該函數接受一個強製性參數current_time:它指定一個指向time_t對象的指針。


返回值:該函數返回以下兩種類型的值:

  • 成功時,返回指向tm對象的指針
  • 否則,返回空指針

以下示例程序旨在說明上述函數。

示例1:

// C++ program to illustrate the 
// gmtime() function 
#include <stdio.h> 
#include <time.h> 
#define CST (+8) 
#define IND (-5) 
  
int main() 
{ 
  
    // object 
    time_t current_time; 
  
    // pointer 
    struct tm* ptime; 
  
    // use time functin 
    time(&current_time); 
  
    // gets the current-time 
    ptime = gmtime(&current_time); 
  
    // print the current time 
    printf("Current time:\n"); 
  
    printf("Beijing ( China ):%2d:%02d:%02d\n", 
           (ptime->tm_hour + CST) % 24, ptime->tm_min, ptime->tm_sec); 
  
    printf("Delhi ( India ):%2d:%02d:%02d\n", 
           (ptime->tm_hour + IND) % 24, ptime->tm_min, ptime->tm_sec); 
    return 0; 
}
輸出:
Current time:
Beijing ( China ):16:40:21
Delhi ( India ): 3:40:21

示例2:

// C++ program to illustrate the 
// gmtime() function 
#include <stdio.h> 
#include <time.h> 
#define UTC (0) 
#define ART (-3) 
  
int main() 
{ 
    time_t current_time; 
    struct tm* ptime; 
    time(&current_time); 
    ptime = gmtime(&current_time); 
    printf("Current time:\n"); 
    printf("Monrovia ( Liberia ) :%2d:%02d:%02d\n", 
           (ptime->tm_hour + UTC) % 24, ptime->tm_min, ptime->tm_sec); 
  
    printf("Buenos Aires ( Argentina ) :%2d:%02d:%02d\n", 
           (ptime->tm_hour + ART) % 24, ptime->tm_min, ptime->tm_sec); 
    return 0; 
}
輸出:
Current time:
Monrovia ( Liberia ) : 8:40:22
Buenos Aires ( Argentina ) : 5:40:22


相關用法


注:本文由純淨天空篩選整理自AmanSrivastava1大神的英文原創作品 gmtime() Function in C/C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。