C/C++获取系统时间需要使用Windows API,包含头文件"windows.h"。
系统时间的数据类型为SYSTEMTIME,可以在winbase.h中查询到如下定义:
typedef struct _SYSTEMTIME { WORD wYear; WORD wMonth; WORD wDayOfWeek; WORD wDay; WORD wHour; WORD wMinute; WORD wSecond; WORD wMilliseconds; } SYSTEMTIME, *PSYSTEMTIME, *LPSYSTEMTIME;
其中包含了年、月、日、时、分、秒、毫秒、一周中的第几天(从周一开始计算)等8条信息,均为WORD类型。
在VC++6.0中WORD为无符号短整型,定义如下:
typedef unsigned short WORD;
获取时间的函数有两个:GetLocalTime()获取本地时间;GEtSystemTime()获取格林尼治标准时间。
#include <iostream.h> #include "windows.h" int main(){ SYSTEMTIME ct; GetLocalTime(&ct);//local time //GetSystemTime(&ct);//GMT time cout<<ct.wYear<<endl; cout<<ct.wMonth<<endl; cout<<ct.wDay<<endl; cout<<ct.wHour<<endl; cout<<ct.wMinute<<endl; cout<<ct.wSecond<<endl; cout<<ct.wMilliseconds<<endl; cout<<ct.wDayOfWeek<<endl;//day of a week,start from Monday return 0; }
时间: 2024-10-11 15:09:08