ctime 时间

1.
类型

clock_t: 是个long型,用来记录一段时间内的时钟计时单元数,即CPU的运行单元时间。
size_t:
标准C库中定义的,应为unsigned int,在64位系统中为long unsigned int。
time_t:
从1970年1月1日0时0分0秒到该时间点所经过的秒数。
struct tm {
  int
tm_sec;       /* 秒 – 取值区间为[0,59] */
  int
tm_min;       /* 分 - 取值区间为[0,59] */
  int
tm_hour;      /* 时 - 取值区间为[0,23] */
  int
tm_mday;      /* 一个月中的日期 - 取值区间为[1,31] */
  int
tm_mon;       /* 月份(从一月开始,0代表一月) - 取值区间为[0,11]
*/
  int tm_year;      /* 年份,其值等于实际年份减去1900
*/
  int tm_wday;      /* 星期 –
取值区间为[0,6],其中0代表星期天,1代表星期一,以此类推 */
  int
tm_yday;      /* 从每年的1月1日开始的天数 –
取值区间为[0,365],其中0代表1月1日,1代表1月2日,以此类推 */
  int
tm_isdst;     /*
夏令时标识符,实行夏令时的时候,tm_isdst为正。不实行夏令时的进候,tm_isdst为0;不了解情况时,tm_isdst()为负。*/
};
2.
时间的操作

clock: 返回时钟计时单元数,自从这个程序开始运行。
time:
返回当前的time_t。
difftime: 计算time_t两个之间的时间差。
3.
转换

mktime: 转换tm structure成time_t
asctime: 转换tm
structure成字符串
ctime: 转换time_t成字符串
gmtime: 转换time_t成tm as UTC
time
localtime: 转换time_t成tm as local time
strftime:
格式时间成字符串
转换成字符串的几个函数:asctime, ctime, strftime
4.

CLOCKS_PER_SEC: 它用来表示一秒钟会有多少个时钟计时单元。

// 测量事件的持续时间  
void test_clock_t()  
{  
    long i = 100000000L;  
    clock_t start, finish;  
    double duration;  
    start = clock();  
  
    /* 测量一个事件持续的时间 */  
    while(i--) {};  
  
    finish = clock();  
    duration = (double)(finish - start) / CLOCKS_PER_SEC;  
    printf("Time to do 100000000 empty loops is %f seconds\n", duration);  
}  
  
void test_time_t()  
{  
    time_t t = time(NULL);  
    printf("The Calendar Time now is %d\n", t);  
}  
  
void test_difftime()  
{  
    time_t start,end;  
    start = time(NULL);  
    system("pause");  
    end = time(NULL);  
    printf("The pause used %5.4f seconds.\n", difftime(end, start));  
}  
  
// 下面都是一些转换函数的应用  
// mktime: tm --> time_c  
void test_mktime()  
{  
    struct tm t;  
    time_t t_of_day;  
    t.tm_year = 1997 - 1900;  
    t.tm_mon = 6;  
    t.tm_mday = 1;  
    t.tm_hour = 0;  
    t.tm_min = 0;  
    t.tm_sec = 1;  
    t.tm_wday = 4; /* Day of the week */  
    t.tm_yday = 0; /* Does not show in asctime */  
    t.tm_isdst = 0;  
  
    t_of_day = mktime(&t);  
    printf(ctime(&t_of_day));  
}  
  
// localtime: time_c --> tm  
void test_localtime()  
{  
    time_t rawtime;  
    struct tm* timeinfo;  
  
    time(&rawtime);  
    timeinfo = localtime(&rawtime);  
    printf("Current local time and date: %s", asctime(timeinfo));  
}  
  
// gmtime: time_c --> tm  
void test_gmtime()  
{  
    time_t rawtime;  
    struct tm* timeinfo;  
  
    time(&rawtime);  
    timeinfo = gmtime(&rawtime);  
    printf("UTC time and date: %s", asctime(timeinfo));  
}  
  
// ctime: time_t --> string  
void test_ctime()  
{  
    time_t t = time(NULL);  
    std::string str = ctime(&t);  
    std::cout << str << std::endl;  
}

ctime 时间,码迷,mamicode.com

时间: 2024-11-06 19:19:01

ctime 时间的相关文章

Linux中atime、mtime、ctime三种时间状态

atime:access time 最近一次访问时间 mtime:modify time 最近一次修改时间(指的是修改文件内容,数据内容) ctime:change time 最近一次属性改变时间,inode节点信息被修改时间(大小.属组.属主.权限) touch.chmod.chown都会改变该值 1.当mtime改变时,ctime必须改变,因为文件大小等属性改变 2.mtime改变时,atime不一定改变. #echo "this is a test" >> /etc/

在CTime类中重载&amp;lt;&amp;lt;和&amp;gt;&amp;gt;

程序代码: #include <iostream> using namespace std; class CTime//时间类 { private: unsigned short int hour; //时 unsigned short int minute; //分 unsigned short int second; //秒 public: CTime(int h=0,int m=0,int s=0);//构造函数 void setTime(int h,int m,int s);//设置时

C语言获取系统时间的几种方式

C语言获取系统时间的几种方式 2009-07-22 11:18:50|  分类: 编程学习 |字号 订阅 C语言中如何获取时间?精度如何? 1 使用time_t time( time_t * timer ) 精确到秒2 使用clock_t clock() 得到的是CPU时间 精确到1/CLOCKS_PER_SEC秒3 计算时间差使用double difftime( time_t timer1, time_t timer0 )4 使用DWORD GetTickCount() 精确到毫秒5 如果使用

设计CTime类,并且在CTime类中使用运算符重载

程序代码: #include <iostream> using namespace std; class CTime//时间类 { private: unsigned short int hour; //时 unsigned short int minute; //分 unsigned short int second; //秒 public: CTime(int h=0,int m=0,int s=0);//构造函数 void setTime(int h,int m,int s);//设置时

在CTime类中重载&lt;&lt;和&gt;&gt;

程序代码: #include <iostream> using namespace std; class CTime//时间类 { private: unsigned short int hour; //时 unsigned short int minute; //分 unsigned short int second; //秒 public: CTime(int h=0,int m=0,int s=0);//构造函数 void setTime(int h,int m,int s);//设置时

linux atime ctime mtime

touch testtime 1. stat testtime[为文件名] 可以查看这个文件名的三者状态 2.ll testtime;ll --time=atime testtime ;ll --time=ctime testtime -rw-r--r--. 1 root root 0 Sep 23 19:28 testtime-rw-r--r--. 1 root root 0 Sep 23 19:28 testtime-rw-r--r--. 1 root root 0 Sep 23 19:28

[转]C语言获取系统时间

C语言中如何获取时间?精度如何? 1 使用time_t time( time_t * timer ) 精确到秒2 使用clock_t clock() 得到的是CPU时间 精确到1/CLOCKS_PER_SEC秒3 计算时间差使用double difftime( time_t timer1, time_t timer0 )4 使用DWORD GetTickCount() 精确到毫秒5 如果使用MFC的CTime类,可以用CTime::GetCurrentTime() 精确到秒6 要获取高精度时间,

关于Ctime库

--------------------- 本文来自 Fuko_Ibuki 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/qq_31908675/article/details/81233816?utm_source=copy ctime 时间!关于日期和时间的计算在信息学竞赛中非常重要. 这一次我来介绍一下ctime中两个神奇的函数. 1:clock 这个东西可以算代码运行的时间.用法是这样的: clock_t nowtime=clock(); ... cou

马哥linux0728课程内容

课堂学习内容 -ahistory list --.bash_histroy 保存历史列表到历史文件 -cclear history list 清空历史列表 -d deletehistory entru 清除历史列表某一条命令 -rread .bash_history 读历史文件中的命令到历史列表 -n 读历史文件中没有读过的命令到历史列表(例如另外一个终端登录输入的命令写到了历史文件,但是这边没有读过,就是读到现在的历史列表) -w 将历史列表写到指定的其他文件中(我们可以通过变量来修改历史文件