C的标准库<time.h>包含了一些处理时间与日期的函数。

1.clock_t clock(void);

函数返回程序自开始执行后的处理器时间,类型是clock_t,单位是tick。如果有错误,clock()函数就返回-1。

类型clock_t在<time.h>中定义,等价于size_t类型。CLOCKS_PER_SEC是<time.h>中定义的宏,表示一秒内的tick数,且是clock_t类型。将clock()函数返回值除以CLOCKS_PER_SEC,得到处理器运行时间。

代码示例:

#include <stdio.h>
#include<time.h>
#include<windows.h>
#include<stdlib.h>
main()
{
clock_t start,end;
double cpu_time;
start = clock();
Sleep();
end = clock();
cpu_time = (double)(end-start)/CLOCKS_PER_SEC;
printf("%.2lf",cpu_time);
system("pause");
}

输出结果:2.00

2. time_t time(time_t *time_t)
time()函数返回从1970年1月1日格林威治时间0点0分0秒到现在的秒数。类型time_t在<time.h>中定义,等价于long。
如果变元不是NULL,则返回值就存在time_t变元指向的位置中。

double difftime(time_t T2,time_t T1)
返回T2-T1的数值,类型是double,单位是秒。

代码示例:

#include <stdio.h>
#include<time.h>
#include<windows.h>
#include<stdlib.h>
main()
{
time_t calendar_start,calendar_end;
calendar_start = time(NULL);
Sleep();
calendar_end = time(NULL);
printf("start:%d\n",calendar_start);
printf("end:%d\n",calendar_end);
printf("diff:%.0lf\n",difftime(calendar_end,calendar_start));
system("pause");
}

输出结果:
start:1460010918
end:1460010920
diff:2

3.char *ctime(const time_t *timer)
函数接收一个time_t变量的指针作为变元,返回一个指向26个字符的字符串指针。其中有星期,日期,时间以及年,最后用一个\n和\0终止。如:"Mon Aug 25 10:45:36 2015\n\0"

代码示例:

#include <stdio.h>
#include<time.h>
#include<stdlib.h>
main()
{
time_t calendar;
calendar = time(NULL);
printf("%s\n",ctime(&calendar));
system("pause");
}

输出结果:Thu Apr 07 14:34:10 2016

4.struct tm *localtime(const time_t* timer)
函数接收一个time_t值的指针,返回结构类型tm的指针。

tm结构如下:
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日开始的天数 */
int tm_isdst; /* 夏令时标识符。*/
}

代码示例:

#include <stdio.h>
#include<time.h>
#include<stdlib.h>
main()
{
time_t calendar;
struct tm *time_data;
char *month[] = {"一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"};
char *week[] = {"星期一","星期二","星期三","星期四","星期五","星期六","星期日"};
char *suffix[] = {"st","nd","rd","th"};
enum suffixIndex {st,nd,rd,th} sufsel = th;
calendar = time(NULL);
time_data = localtime(&calendar);
printf("format date:%d/%d/%d\n",time_data->tm_year+,time_data->tm_mon,time_data->tm_mday);
switch(time_data->tm_mday)
{
case :
case :
case :
sufsel = st;
break;
case :
case :
sufsel = nd;
break;
case :
case :
sufsel = rd;
break;
default:
sufsel = th;
break;
}
printf("today is %s,%s,%d%s,%d",week[time_data->tm_wday],month[time_data->tm_mon],time_data->tm_mday,suffix[sufsel],time_data->tm_year+);
system("pause");
}

输出结果:
format date:2016/3/7
today is 星期五,四月,7th,2016

4.localtime()函数生成的是本地时间,若要使用UTC(世界调整时间),可使用gmtime()函数

5.time_t mktime(struct tm *ptime)
函数接收一个tm结构的变元指针,返回值类型为timt_t。

c--日期和时间函数的更多相关文章

  1. Sql Server函数全解(四)日期和时间函数

      日期和时间函数主要用来处理日期和时间值,本篇主要介绍各种日期和时间函数的功能和用法,一般的日期函数除了使用date类型的参数外,也可以使用datetime类型的参数,但会忽略这些值的时间部分.相同 ...

  2. MySQL数据库9 - 日期与时间函数

    一 日期和时间函数 函数的概念:按指定格式输入参数,返回正确结果的运算单元 1. 返回当前日期:curdate() current_date() current_date()+0可以将当前日期转换为数 ...

  3. sqlserver常用日期、时间函数和格式

    Sql Server中常用的日期与时间函数1.  当前系统日期.时间    select getdate() 2. dateadd  在向指定日期加上一段时间的基础上,返回新的 datetime 值  ...

  4. 20101102--SQL字符串函数 ,日期和时间函数

    --------------------字符串函数------------------------- --ASCII 返回字符串的首字母的ASCII编码 select ASCII('w') selec ...

  5. Sql Server函数全解<四>日期和时间函数

    原文:Sql Server函数全解<四>日期和时间函数   日期和时间函数主要用来处理日期和时间值,本篇主要介绍各种日期和时间函数的功能和用法,一般的日期函数除了使用date类型的参数外, ...

  6. MySQL 笔记 —— 日期和时间函数

    [TOC] 获取当前日期的函数和获取当前时间的函数 CURDATE()和CURRENT_DATE()函数获取当前日期:CURTIME()和CURRENT_TIME()函数获取当前时间. mysql&g ...

  7. MySQL数据库—日期与时间函数

    一. 日期和时间函数 函数的概念:按指定格式输入参数,返回正确结果的运算单元 1. 返回当前日期:curdate() current_date() current_date()+0可以将当前日期转换为 ...

  8. web报表工具FineReport常用函数的用法总结(日期和时间函数)

    web报表工具FineReport常用函数的用法总结(日期和时间函数) 说明:凡函数中以日期作为参数因子的,其中日期的形式都必须是yy/mm/dd.而且必须用英文环境下双引号(" " ...

  9. MySql日期与时间函数

    select DATE_FORMAT(date_sub(current_date(), interval 1 day), '%Y-%m-%d') -- 2018-05-29(昨天) select DA ...

  10. sql的日期和时间函数–date_format

    Mysql的日期和时间函数–date_format   DATE_FORMAT(date,format)依照 format 字符串格式化 date 值.下面的修饰符可被用于 format 字符串中:修 ...

随机推荐

  1. (转)Delta3D源码分析

    最近学习Delta3D,  2.4版忙着发布,一直不能成功编译SimCore, 索性静下心来看看源码,官网上竟然提供了几个重要组建的软件设计说明书(SDD),虽说基本都是2005版了,不过我看了后觉得 ...

  2. 转:开源3D引擎介绍

    Delta3D:Delta3D是一个功能齐全的游戏引擎,可用于游戏,模拟或其他图形应用.其模块化设计集成了其他的开源项目,如‘开放场景图’,‘开放动力学引擎’,‘人物动画库’和‘OpenAL’ .De ...

  3. selectAll, unSelectAll两个操作的实现

    private void updateBatchSelectionStatus() {     ContactListAdapter.ViewHolder viewHolder = null;     ...

  4. QQ登录整合/oauth2.0认证-01-申请appkey和appid

    本节需要你申请appkey和appid还有绑定域名的空间 首先 再讲课之前 你需要准备以下东西 到腾讯开发平台中申请 开发者 获得appid 和appkey 这两个东东 这两个东东 就算没审核 也可以 ...

  5. 可扩展的Web系统和分布式系统(Scalable Web Architecture and Distributed Systems)

    Open source software has become a fundamental building block for some of the biggest websites. And a ...

  6. dx11的一些数据结构

    功能是什么创建一个设备(device)来代表显示适配器(display adapter)并且创建一个交换链(swap chain)用于渲染 设备device在dx11里是用来干什么的从ID3DX11D ...

  7. springAOP记录用户操作日志

    项目已经开发完成,需要加用户操作日志,如果返回去加也不太现实,所以使用springAOP来完成比较合适. 注解工具类: @Retention(RetentionPolicy.RUNTIME) @Tar ...

  8. Java正则应用

    private List<String> find(String reg, String str) { Matcher matcher = Pattern.compile(reg).mat ...

  9. Snip for Mac(桌面截图工具)安装

    1.软件简介    Snip 一款用于桌面截图的工具. 2.资源列表 链接 提取密码 系统要求 软件语言 Snip for Mac v2.0 (5771) fgab macOS 10.6.8 及以上 ...

  10. VM页面中遍历枚举类

    1)自定义的枚举类如下所示: public enum BusType { MID_SMALL(1, "中小件"), FRESH(2, "生鲜"), GLOBAL ...