C中的时间函数的用法

C中的时间函数的用法
    这个类展示了C语言中的时间函数的常用的用法。

源代码:

#include <ctime>
#include <iostream>

using namespace std;

class MyTime
{
public:
    MyTime() { mPTime = 0; mStLocalTime = 0; mStGMTTime = 0; }
    ~MyTime() {};

//time_t time(time_t * timer) 返回自1970年1月1日00:00:00(称为UNIX系统的Epoch时间)到当前时刻的秒数。
    time_t GetTime() { return time(0); }

//time_t time(time_t * timer) 将自1970年1月1日00:00:00(称为UNIX系统的Epoch时间)到当前时刻的秒数设定到t指向的一个长整形变量里。
    time_t GetTimeB() { time(&mPTime); return mPTime; }

//struct tm *localtime(const time_t *clock) 可以将时间戳转换为一个时间结构体,且时间为经过时区转化的本地时间。
    int GetYear() { GetTimeB(); mStLocalTime = localtime(&mPTime); return mStLocalTime->tm_year; }
    int GetMonth() { GetTimeB(); mStLocalTime = localtime(&mPTime); return mStLocalTime->tm_mon; }
    int GetDate() { GetTimeB(); mStLocalTime = localtime(&mPTime); return mStLocalTime->tm_mday; }
    int GetHour() { GetTimeB(); mStLocalTime = localtime(&mPTime); return mStLocalTime->tm_hour; }
    int GetMinute() { GetTimeB(); mStLocalTime = localtime(&mPTime); return mStLocalTime->tm_min; }
    int GetSecond() { GetTimeB(); mStLocalTime = localtime(&mPTime); return mStLocalTime->tm_sec; }
    int GetWeekDay() { GetTimeB(); mStLocalTime = localtime(&mPTime); return mStLocalTime->tm_wday; }
    int GetYearDay() { GetTimeB(); mStLocalTime = localtime(&mPTime); return mStLocalTime->tm_yday; }

//char *asctime(const struct tm *tblock) 将换日期和时间的结构体转换为相应的字符串。
    char *GetTimeStr() { GetTimeB(); mStLocalTime = localtime(&mPTime); return asctime(mStLocalTime); }

//char *ctime(const time_t *time) 将时间戳转换为响应的字符串。
    char *GetLocalTimeStr2() { GetTimeB(); return ctime(&mPTime); }

//tzset() 为设置时区。
    //struct tm *gmtime(long *clock) 把日期和时间转换为格林威治(GMT)时间。
    char *GetGMTTimeStr() { tzset(); GetTimeB(); mStGMTTime = gmtime(&mPTime); return asctime(mStGMTTime); }

//time_t mktime(strcut tm * timeptr) 将struct tm格式的时间转换为时间戳。
    time_t GetTime3() { time(&mPTime); mStLocalTime = localtime(&mPTime); return mktime(mStLocalTime); }

//double difftime(time_t time1, time_t time0) 计算时间间隔才长度,以秒为单位,且只能精确到秒
    double CalDuration(time_t t1, time_t t2) { return difftime(t1,t2); }

//size_t strftime(char *strDest,size_t maxsize,const char *format,const struct tm *timeptr);
    //将时间格式化,或者说:格式化一个时间字符串。
    //根据format指向字符串中格式命令把timeptr中保存的时间信息放在strDest指向的字符串中,最多向strDest中存放maxsize个字符。
    void FormatTime( char *str) { time(&mPTime); strftime(str,100,"%Y-%m-%d",localtime(&mPTime)); }
private:
    time_t mPTime;                //time_t 实际上是个长整形,用于保存自1970年1月1日00:00:00(称为UNIX系统的Epoch时间)到当前时刻的秒数。
    struct tm *mStLocalTime;
    struct tm *mStGMTTime;
};

int main(int argc, char *argv[])
{
    cout<<"process begin @["<<(void*)&main<<"]"<<endl;

MyTime myTime;
    cout<<"current Time 1 is ["<<myTime.GetTime()<<"]"<<endl;
    cout<<"current Time 2 is ["<<myTime.GetTimeB()<<"]"<<endl;
    cout<<"current Time 3 is ["
            <<myTime.GetYear() + 1900<<"-"<<myTime.GetMonth()<<"-"<<myTime.GetDate()<<" "
            <<myTime.GetHour()<<":"<<myTime.GetMinute()<<":"<<myTime.GetSecond()<<"]"<<endl;
    cout<<"current Time week day is ["<<myTime.GetWeekDay()<<"]"<<endl;
    cout<<"current Time year day is ["<<myTime.GetYearDay()<<"]"<<endl;
    cout<<"current Time 4 is ["<<myTime.GetTimeStr()<<"]"<<endl;
    cout<<"current Time 5 is ["<<myTime.GetLocalTimeStr2()<<"]"<<endl;
    cout<<"current Time 6 (GMT time) is ["<<myTime.GetGMTTimeStr()<<"]"<<endl;
    cout<<"current Time 7 is ["<<myTime.GetTime3()<<"]"<<endl;
    cout<<"calculate duration of ["<<myTime.GetTime3()<<"] and ["<<myTime.GetTime3() - 1<<"] is ["
            <<myTime.CalDuration(myTime.GetTime3(), myTime.GetTime3() - 1 )<<"]"<<endl;
    char szTime[20] = {0};
    myTime.FormatTime(szTime);
    cout<<"current Time 8 is ["<<szTime<<"]"<<endl;

return 0;
}

输出结果:
process begin @[0x4016b0]
current Time 1 is [1416756697]
current Time 2 is [1416756697]
current Time 3 is [2014-10-23 23:31:37]
current Time week day is [0]
current Time year day is [326]
current Time 4 is [Sun Nov 23 23:31:37 2014
]
current Time 5 is [Sun Nov 23 23:31:37 2014
]
current Time 6 (GMT time) is [Sun Nov 23 15:31:37 2014
]
current Time 7 is [1416756697]
calculate duration of [1416756697] and [1416756696] is [1.41676e+009]
current Time 8 is [2014-11-23]

时间: 2024-12-07 09:31:19

C中的时间函数的用法的相关文章

PHP 中日期时间函数 date() 用法总结

[导读] date()是我们常用的一个日期时间函数,下面我来总结一下关于date()函数的各种形式的用法,有需要学习的朋友可参考.格式化日期date() 函数的第一个参数规定了如何格式化日期 时间.它使用字母来表示日期和时间 格式化日期date() 函数的第一个参数规定了如何格式化日期/时间.它使用字母来表示日期和时间的格式.这里列出了一些可用的字母: •d - 月中的天 (01-31)•m - 当前月,以数字计 (01-12)•Y - 当前的年(四位数)您可以在我们的 PHP Date 参考手

PHP中日期时间函数date()用法总结

格式化日期date() 函数的第一个参数规定了如何格式化日期/时间.它使用字母来表示日期和时间的格式.这里列出了一些可用 的字母: •d - 月中的天 (01-31)•m - 当前月,以数字计 (01-12)•Y - 当前的年(四位数)您可以在我们的 PHP Date 参考手册中,找到格式参数中可以使用的所有字母. 可以在字母之间插入其他字符,比如 "/"."." 或者 "-",这样就可以增加附加格式了: echo date("Y/m/

JavaScript中字符串分割函数split用法实例

这篇文章主要介绍了JavaScript中字符串分割函数split用法,实例分析了javascript中split函数操作字符串的技巧,非常具有实用价值,需要的朋友可以参考下 本文实例讲述了JavaScript中字符串分割函数split用法.分享给大家供大家参考.具体如下: 先来看下面这段代码: <script type="text/javascript"> var str="How are you doing today?" document.write

c#中关于时间函数的整理

闲来无事,为了加深自己的印象,在此对c#中的时间函数进行整理,为了能够方便别人,也同时方便自己. 在编写代码中,我们往往在很多时候需要用到时间函数.俗话说,孰能生巧,但是当我们一段时间不用的话,慢慢就淡忘了,当用到时候又需要在网上找资料,查来查去,为了使自己能够不断提高,定时整理自己所感悟的,为将来忘记所用,也是不错的. 今天整理一下用到的时间函数:如下.     //获取日期+时间      DateTime.Now.ToString();            // 2008-9-4 20:

c/c++中的时间函数

c/c++中的时间函数 分类: C/C++2012-05-19 16:27 338人阅读 评论(0) 收藏 举报 日历structcalendartimermicrosoft数据结构  转载地址:http://www.cppblog.com/bourne/archive/2006/07/05/9423.aspx 摘要:本文从介绍基础概念入手,探讨了在C/C++中对日期和时间操作所用到的数据结构和函数,并对计时.时间的获取.时间的计算和显示格式等方面进行了阐述.本文还通过大量的实例向你展示了tim

SQL2005中row_number()等函数的用法

SQL2005中row_number()等函数的用法 今天刚装了SQL Server 2005,感觉还行,2005比2000新增了几个函数,分别是row_number().rank().dense_rank().ntile(),下面以实例分别简单讲解一下. create table gg(sname varchar(10),sort varchar(10),num int) go insert into gg select '白芍','根茎类',55 union all select '法半夏'

C语言中关于scanf函数的用法

scanf()函数的控制串 函数名: scanf 功 能: 执行格式化输入 用 法: int scanf(char *format[,argument,...]); scanf()函数是通用终端格式化输入函数,它从标准输入设备(键盘) 读取输入的信息.可以读入任何固有类型的数据并自动把数值变换成适当的机内格式. 其调用格式为: scanf("<格式化字符串>",<地址表>); scanf()函数返回成功赋值的数据项数,出错时则返回EOF. 其控制串由三类字符构成

C++中的时间函数

C++获取时间函数众多,何时该用什么函数,拿到的是什么时间?该怎么用?很多人都会混淆. 本文是本人经历了几款游戏客户端和服务器开发后,对游戏中时间获取的一点总结. 最早学习游戏客户端时,为了获取最精确的时间,使用两个函数 BOOL QueryPerformanceFrequency(LARGE_INTEGER *lpFrequency); BOOL QueryPerformanceCounter(LARGE_INTEGER *lpCount); 这两个函数分别是获取CPU的时钟频率和CPU计数器

Java中的split函数的用法

Java中的 split  函数是用于按指定字符(串)或正则去分割某个字符串,结果以字符串数组形式返回: 例如: String str="[email protected]"; String[] a = str.split("@"); System.out.println("处理结果: "+a[0]+","+a[1]);   //输出的是: 处理结果: 1234,abc 对于分割的字符(串),通常是常见,普通的,没什么问题: