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(¤t_time);
// gets the current-time
ptime = gmtime(¤t_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(¤t_time);
ptime = gmtime(¤t_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
相关用法
- C++ fma()用法及代码示例
- C++ array get()用法及代码示例
- C++ strcspn()用法及代码示例
- C++ unordered_map end( )用法及代码示例
- C++ iswpunct()用法及代码示例
- C++ feupdateenv()用法及代码示例
- C++ exp2()用法及代码示例
- C++ raise()用法及代码示例
- C++ fread()用法及代码示例
- C++ array at()用法及代码示例
- C++ iswalpha()用法及代码示例
- C++ iswalnum()用法及代码示例
- C++ towupper()用法及代码示例
注:本文由纯净天空筛选整理自AmanSrivastava1大神的英文原创作品 gmtime() Function in C/C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。