码迷,mamicode.com
首页 > 编程语言 > 详细

C/C++获取系统时间

时间:2014-11-06 12:51:27      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   os   使用   sp   文件   数据   div   

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;
}

C/C++获取系统时间

标签:blog   io   ar   os   使用   sp   文件   数据   div   

原文地址:http://www.cnblogs.com/tangxin-blog/p/4078378.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!