【C语言】time.h——主要函数介绍(附有几个小项目)

time.h是C标准函数库中获取时间与日期、对时间与日期数据操作及格式化的头文件。

返回值类型

  1. size_t:适合保存sizeof的结果,类型为unsigned int(%u)
  2. clock_t:适合存储处理器时间的类型,一般为unsigned long(%lu)
  3. time_t:适合储存日历时间类型,一般情况下是long。(%ld)
  4. struct tm:保存时间和日期的结构
// 原文注释更容易理解变量的命名
struct tm {
   int tm_sec;         /* seconds,  range 0 to 59          */
   int tm_min;         /* minutes, range 0 to 59           */
   int tm_hour;        /* hours, range 0 to 23             */
   int tm_mday;        /* day of the month, range 1 to 31  */
   int tm_mon;         /* month, range 0 to 11             */  // +1
   int tm_year;        /* The number of years since 1900   */  // +1900
   int tm_wday;        /* day of the week, range 0 to 6    */  // +1
   int tm_yday;        /* day in the year, range 0 to 365  */  // +1
   int tm_isdst;       /* daylight saving time             */
};

宏定义

  1. NULL:空指针
  2. CLOCKS_PER_SEC:其值为1000,表示一秒CPU运行的时钟周期数为1000个,相当于1ms一个时钟周期,因此一般说操作系统的单位是毫秒。

time

功能:返回当前日历时间值,这个值是将时间按照一定逻辑计算得来的

  • 年数 = 天数 * 小时 * 分钟 * 秒(年数 = 365 * 24 * 60 * 60)
  • 得到的日历时间值除于年数,得到结果为自1970年1月1日后经历得年数

函数原型:time_t time(time_t *timer)

返回值:返回自纪元(00:00:00 UTC,1970 年 1 月 1 日)以来的时间,以秒为单位。如果timer不为 NULL,则返回值也存储在变量 timer 中。time_t类型,一般情况下是长整型。(%ld)

参数:为指针类型(一般传入NULL),秒值将存储在指针中。

  • time_t now = time(NULL); // 等价为time(&now);

注意:

  1. 注意区分struct tm中的1900年
  • 返回当前日历时间值

    #include <stdio.h>
    #include <time.h>
    
    int main () {
       time_t now = time(NULL);
    
       printf("The final resultl is %ld\n", now);
       return(0);
    }
    

    得到的结果为:The final resultl is 1704711506

    1704711506 / 365 / 24 / 60 / 60 结果约等于54,加上1970后即为2024

clock

功能:记录程序开始以来使用的时钟周期数,可以记录某段程序执行耗时

函数原型:clock_t clock(void)

返回值:返回 程序开始以来使用的时钟周期数,失败则返回-1。clock_t类型(%ld)

  • 计算一段代码所需要的时间

    #include <time.h>
    #include <stdio.h>
    
    int main () {
       clock_t start_t, end_t;
       double total_t;
       int i;
    
       start_t = clock();
       printf("Going to scan a loop, start_t = %ld\n", start_t);
       for(i=0; i< 50000000; i++);
    
       end_t = clock();
       printf("End of the big loop, end_t = %ld\n", end_t);
       
       total_t = (double)(end_t - start_t) / CLOCKS_PER_SEC;  // 得到的结果是以 秒 为单位的
       printf("Total time taken by CPU: %f\n", total_t  );
       printf("Exiting of the program...\n");
    
       return(0);
    }
    

difftime

功能:返回 time1 和 time2 之间的秒差,即 (time1 - time2)。 这两个时间以日历时间为单位指定,表示自纪元(1970 年 1 月 1 日 00:00:00,协调世界时 (UTC))以来经过的时间。

函数原型:double difftime(time_t time1, time_t time2)

参数:

  • time1 − 这是结束时间time_t对象。
  • time2 − 这是开始时间time_t对象

返回值: time1 和 time2 之间的秒差作为双精度值返回

  • 计算一段代码所需要的时间

    #include <stdio.h>
    #include <time.h>
    
    int main () {
       time_t start_t, end_t;
       double diff_t;
    
       printf("Starting of the program...\n");
       time(&start_t);
    
       printf("Sleeping for 5 seconds...\n");
       sleep(5);
    
       time(&end_t);
       diff_t = difftime(end_t, start_t);
    
       printf("Execution time = %f\n", diff_t); // 结果就是以 秒 为单位的
       printf("Exiting of the program...\n");
    
       return(0);
    }
    
  • my_difftime

    double my_difftime(time_t time1, time_t time2){
    	return (double)(time1 - time2);
    }
    

localtime

功能:C 库函数 struct tm localtime(const time_t timer) 使用计时器**指向的时间,用表示相应本地时间的值填充 tm 结构。timer 的值被分解为结构 tm,并以当地时区表示。

函数原型:struct tm *localtime(const time_t *timer)

参数:timer是指向表示日历时间的time_t值的指针,即传入time_t类型的地址。

返回值:返回指向填充了时间信息的 tm 结构的指针,失败则返回NULL。

  • 获取当前日期(当前的和多少天之后的,多少天之前的)

    #include <stdio.h>
    #include <time.h>
    
    void GetTime(){
        time_t now = time(NULL);  // 获取当前时间状态
    //		now += 10 * 24 * 60 * 60; // 获取十天后的时间状态(天 * 时 * 分 * 秒)
    //		now -= 10 * 24 * 60 * 60; // 获取十天前的时间状态(天 * 时 * 分 * 秒)
    
        struct tm *info = localtime(&now);  
        int year = info->tm_year + 1900;
        int month = info->tm_mon + 1;
        int day = info->tm_mday;
        int hour = info->tm_hour;
        int minute = info->tm_min;
        int second = info->tm_sec;
    
        printf("Current time: %d-%02d-%02d %02d:%02d:%02d\n", 
        			year, month, day, hour, minute, second);
    }
    
    int main(){
    	GetTime();
    	return 0;
    }
    

mktime

功能:根据本地时区将 timeptr 指向的结构转换为time_t值。

函数原型:time_t mktime(struct tm *timeptr)

参数:timeprt 是指向结构体tm的指针,即传入struct tm类型的地址。(tm在上面有介绍)

返回值:此函数返回与作为参数传递的日历时间相对应的time_t值。出错时,返回 -1 。

  • 将日期转为时间状态值

    #include <stdio.h>
    #include <time.h>
    #include <math.h> // for abs
    
    // 将日期转为time_t
    // 利用这个函数,可以计算两个日期之间相隔多少天
    time_t tm_convert(int year, int month, int day,
                      int hour, int minute, int second)
    {
        struct tm time_convert;
        time_convert.tm_year = year - 1900;
        time_convert.tm_mon = month - 1;
        time_convert.tm_mday = day;
        time_convert.tm_hour = hour;
        time_convert.tm_min = minute;
        time_convert.tm_sec = second;
    
        return mktime(&time_convert);
    }
    
    void DiffDay()
    {
        time_t start = tm_convert(2023, 12, 15, 0, 0, 0);
        time_t end = tm_convert(2002, 5, 19, 0, 0, 0);
    
        double diff = difftime(start, end);
        int day = (int)(diff / (24 * 60 * 60)); // 每天所有的秒数
    
        printf("相隔%d天.\n", abs(day));
    }
    
    int main()
    {
        DiffDay();
        return 0;
    }
    

ctime

功能:返回一个基于参数 timer 的、带有日期信息的字符串,其中包含人类可读格式的日期和时间信息,表示 localtime。

函数原型:char *ctime(const time_t *timer)

返回值:返回一个字符串指针,失败则通常返回NULL。返回的字符串采用以下格式:Www Mmm dd hh:mm:ss yyyy,其中 Www 是工作日,Mmm 是以字母表示的月份,dd 是月份的日期**,hh:mm:ss** 是时间,yyyy 是年份。

参数: 指向包含日历时间的time_t对象的指针。

  • 获取当前日期

    #include <stdio.h>
    #include <time.h>
    
    int main () {
       time_t now = time(NULL);
       printf("Current time = %s", ctime(&now));
       return(0);
    }
    
    • 结果
      Current time = Tue Jan 09 00:00:17 2024

asctime

功能:返回一个字符串指针。其中包含人类可读格式的日期和时间信息,表示localtime

函数原型:char *asctime(const struct tm *timeptr)

参数:是指向struct tm的一个指针

返回值:此函数返回一个 C 字符串,失败则通常返回NULL。返回的字符串格式为:www Mmm dd hh:mm:ss yyyy,其中 Www 是工作日,Mmm 是字母中的月份,dd 是月份的日期,hh:mm:ss 是时间,yyyy 是年份。

小项目

  • 制作简易时钟

    /*
        制作的一个能显示时间的简易时钟
    */
    
    #include <stdio.h>
    #include <stdlib.h>
    #include <time.h>
    #include <windows.h>
    
    // 带颜色的打印函数
    void print_with_color(char *str, int color)
    {
        HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
        SetConsoleTextAttribute(hConsole, color);
        printf("%s", str);
        SetConsoleTextAttribute(hConsole, FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE);
    }
    
    int main(){
        while(1){
            /* 这两个放在外面的话,就不能一直获取当前时间了 */
            time_t t = time(NULL);
            struct tm *now = localtime(&t);
            char str_t[100]; 
            sprintf(str_t, "------------------------\n");
            print_with_color(str_t, FOREGROUND_BLUE | FOREGROUND_INTENSITY);
    
            sprintf(str_t, "| %d/%02d/%02d  %02d:%02d:%02d |\n", 
                        now->tm_year + 1900, now->tm_mon + 1, now->tm_mday, now->tm_hour, now->tm_min, now->tm_sec);
            print_with_color(str_t, FOREGROUND_GREEN | FOREGROUND_INTENSITY);
            
            sprintf(str_t, "------------------------\n");
            print_with_color(str_t, FOREGROUND_BLUE | FOREGROUND_INTENSITY);
            Sleep(1000);
            system("cls");
        }
        return 0;
    }
    
    /*
    
    1. print_with_color() 函数:用于将字符串打印到控制台并设置颜色。
    2. time() 函数:获取当前的时间戳。
    3. localtime() 函数:将时间戳转换为本地时间。
    4. sprintf() 函数:根据格式化字符串生成一个字符串。
    5. FOREGROUND_BLUE、FOREGROUND_GREEN、FOREGROUND_RED、FOREGROUND_INTENSITY 常量:设置文本颜色。
    6. Sleep() 函数:暂停一段时间,单位是毫秒。
    7. system("cls"):清空控制台。
    	在主函数中,程序使用了一个死循环,不断获取当前时间并更新时钟。
    首先,程序使用 time() 函数获取当前时间戳,并使用 localtime() 
    函数将其转换为本地时间。然后,程序使用 sprintf() 函数将时钟字符
    串格式化,并使用 print_with_color() 函数将其打印到控制台。接着,
    程序使用 Sleep() 函数暂停一秒钟,以便下一次更新时钟。最后,程序
    使用 system("cls") 函数清空控制台,以便下一次绘制时钟。
    
    */
    
    • 结果
      在这里插入图片描述
  • 制作简易日历

    #include <stdio.h>
    #include <time.h>
    
    int main() {
        time_t t = time(NULL);
        struct tm *tm = localtime(&t);
    
        int year = tm->tm_year + 1900;
        int month = tm->tm_mon + 1;
        int day = tm->tm_mday;
    
        printf("当前日期:%d年%d月%d日\n", year, month, day);
    
        struct tm firstDay;
        firstDay.tm_year = year - 1900;
        firstDay.tm_mon = month - 1;
        firstDay.tm_mday = 1;
        mktime(&firstDay);
    
        int weekday = firstDay.tm_wday;
    
        printf("日 一 二 三 四 五 六\n");
    
        for (int i = 0; i < weekday; i++) {
            printf("   ");
        }
    
        int daysInMonth;
        switch (month) {
            case 2:
                if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0))
                    daysInMonth = 29;
                else
                    daysInMonth = 28;
                break;
            case 4:
            case 6:
            case 9:
            case 11:
                daysInMonth = 30;
                break;
            default:
                daysInMonth = 31;
        }
    
        for (int d = 1; d <= daysInMonth; d++) {
            if (d == day) {
                printf("\033[1;31m%2d\033[0m ", d); // 使用红色高亮显示今天的日期
            } else {
                printf("%2d ", d);
            }
            if ((weekday + d) % 7 == 0)
                printf("\n");
        }
    
        return 0;
    }
    
    • 结果
      在这里插入图片描述
  • 输入日期,计算当前日期是这一年中的第几天(time.h)
    (之前发布的一个博客不是用time.h来编写的,这次使用time.h做一个补充)

    #include <stdio.h>
    #include <time.h>
    
    int main() {
        // 初始化
        int year, month, day;
        time_t now = time(NULL);
        struct tm *timeinfo = localtime(&now);
    
        // 获取用户输入日期
        printf("请输入日期(格式:YYYY-MM-DD):");
        scanf("%d-%d-%d", &year, &month, &day);
    
        // 更新timeinfo结构体的年月日信息
        timeinfo->tm_year = year - 1900;
        timeinfo->tm_mon = month - 1;
        timeinfo->tm_mday = day;
    
        // 计算并输出这一年中的第几天
        int day_of_year = timeinfo->tm_yday + 1;
        printf("输入日期在这一年中是第 %d 天\n", day_of_year);
    
        return 0;
    }
    

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/305809.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

vue3+vite+tailwind.css无效问题,兄弟们我来解救你们了

1.按照文档配置&#xff0c;原模原样写&#xff0c;最终发现没效果。。。。。 那是应为vite.config.ts没有配置&#xff0c; 保你100%有效果&#xff01;

一次性讲清楚INNER JOIN、LEFT JOIN、RIGHT JOIN的区别和用法详解

文章目录 Join查询原理Nested-Loop JoinINNER JOIN、LEFT JOIN、RIGHT JOIN的区别INNER JOIN操作LEFT JOIN操作RIGHT JOIN操作总结 参考 Join查询原理 查询原理&#xff1a;MySQL内部采用了一种叫做 Nested Loop Join(嵌套循环连接) 的算法。Nested Loop Join 实际上就是通过 …

力扣——C语言:合并两个有序数组

88. 合并两个有序数组 - 力扣&#xff08;LeetCode&#xff09; 这道题有多种方法可以解决 一、暴力求解 这种方法最简单&#xff0c;我们只需要把两个数组合在一起然后在冒泡排序就可以了 代码如下&#xff1a; void merge(int* nums1, int nums1Size, int m, int* nums2…

springboot——消息中间件

消息的概念 从广义角度来说&#xff0c;消息其实就是信息&#xff0c;但是和信息又有所不同。信息通常被定义为一组数据&#xff0c;而消息除了具有数据的特征之外&#xff0c;还有消息的来源与接收的概念。通常发送消息的一方称为消息的生产者&#xff0c;接收消息的一方称为…

OpenAI ChatGPT-4开发笔记2024-02:Chat之text generation之completions

API而已 大模型封装在库里&#xff0c;库放在服务器上&#xff0c;服务器放在微软的云上。我们能做的&#xff0c;仅仅是通过API这个小小的缝隙&#xff0c;窥探ai的奥妙。从程序员的角度而言&#xff0c;水平的高低&#xff0c;就体现在对openai的这几个api的理解程度上。 申…

Hyperledger Fabric 核心概念与组件

要理解超级账本 Fabric 的设计&#xff0c;首先要掌握其最基本的核心概念与组件&#xff0c;如节点、交易、排序、共识、通道等。 弄清楚这些核心组件的功能&#xff0c;就可以准确把握 Fabric 的底层运行原理&#xff0c;深入理解其在架构上的设计初衷。知其然&#xff0c;进…

RT-Thread 线程间同步 信号量

线程间同步 在多线程实时系统中&#xff0c;一项工作的完成往往可以通过多个线程协调的方式共同来完成。 例如一项工作中的两个线程&#xff1a;一个线程从传感器中接收数据并且将数据写到共享内存中&#xff0c;同时另一个线程周期性地从共享内存中读取数据并发送出去显示&a…

文件或目录损坏的磁盘修复方法

文件或目录损坏是一种常见的计算机问题&#xff0c;可能由多种原因导致&#xff0c;如磁盘故障、病毒或恶意软件攻击、文件系统错误等。这些损坏可能导致数据丢失或无法访问文件&#xff0c;因此及时修复至关重要。本文将深入探讨文件或目录损坏的原因&#xff0c;并提供相应的…

JAVA毕业设计118—基于Java+Springboot的宠物寄养管理系统(源代码+数据库)

毕设所有选题&#xff1a; https://blog.csdn.net/2303_76227485/article/details/131104075 基于JavaSpringboot的宠物寄养管理系统(源代码数据库)118 一、系统介绍 本系统分为管理员、用户两种角色 1、用户&#xff1a; 登陆、注册、密码修改、宠物寄养、寄养订单、宠物…

解决word图片格式错乱、回车图片不跟着换行的问题

解决word图片格式错乱、回车图片不跟着换行的问题 1.解决方法。 先设置为嵌入型 但是设置的话会出现下面的问题。图片显示不全。 进一步设置对应的行间距&#xff0c;原先设置的是固定值&#xff0c;需要改为1.5倍行距的形式&#xff0c;也就是说不能设置成固定值就可以。

SpringBoot学习(五)-Spring Security配置与应用

注&#xff1a;此为笔者学习狂神说SpringBoot的笔记&#xff0c;其中包含个人的笔记和理解&#xff0c;仅做学习笔记之用&#xff0c;更多详细资讯请出门左拐B站&#xff1a;狂神说!!! Spring Security Spring Security是一个基于Java的开源框架&#xff0c;用于在Java应用程…

ZGC垃圾收集器介绍

ZGC&#xff08;The Z Garbage Collector&#xff09;是JDK 11中推出的一款低延迟垃圾回收器&#xff0c;它的设计目标包括&#xff1a; 停顿时间不超过10ms&#xff1b;停顿时间不会随着堆的大小&#xff0c;或者活跃对象的大小而增加&#xff1b;支持8MB~4TB级别的堆&#x…

【数字图像处理】水平翻转、垂直翻转

图像翻转是常见的数字图像处理方式&#xff0c;分为水平翻转和垂直翻转。本文主要介绍 FPGA 实现图像翻转的基本思路&#xff0c;以及使用紫光同创 PGL22G 开发板实现数字图像水平翻转、垂直翻转的过程。 目录 1 水平翻转与垂直翻转 2 FPGA 布署与实现 2.1 功能与指标定义 …

【实用工具指南 三】CHAT-GPT4接入指南

好消息&#xff0c;CHAT-GPT4终于开放订阅了&#xff0c;聪明的人已经先用上了&#xff0c;先上个图。 但是去订阅的时候发现银行卡验证不通过&#xff0c;后来一查必须是老美的州才行&#xff0c;于是买了个美元虚拟卡 接下来就比较简单&#xff0c;直接找客服把GPT的充值界…

LabVIEW在高精度机器人视觉定位系统中的应用

在现代工业自动化中&#xff0c;精确的机器人视觉定位系统对于提高生产效率和产品质量至关重要。LabVIEW软件&#xff0c;以其卓越的图像处理和自动化控制功能&#xff0c;在这一领域发挥着重要作用。本案例将展示LabVIEW如何帮助开发和实现一个高精度的机器人视觉定位系统&…

令人绝望的固化和突破-2024-

这是继续写给自己求生之路的记录。 所有成熟稳定的行业都是相对固化的&#xff0c;上升通道及其严苛。 博客 我刚写博客的2015-2017这3年&#xff0c;其实还能带动一些学生&#xff0c;然后部分学生心中有火&#xff0c;眼里有光&#xff0c;也有信心自己做好&#xff0c;还有…

Java里的实用类

1.枚举 语法&#xff1a; public enum 变量名{ 值一&#xff0c;值二} 某个变量的取值范围只能是有限个数的值时&#xff0c;就可以把这个变量定义成枚举类型。 2…装箱&#xff08;boxing&#xff09; 和拆箱&#xff08;unboxing&#xff09; 装箱&#xff08;boxing&…

玩转硬件之玩改朗逸中控设备

这是一个有关一件被拆卸的朗逸中控设备的故事。这个设备已经闲置多年&#xff0c;但是它的命运发生了转变。它被改装成了一台收音机和MP3播放器。 这个设备曾经是一辆朗逸的中控屏幕&#xff0c;就是因为它没有倒车影像&#xff0c;它就被拆了下来&#xff0c;被扔在了一个角落…

系列十三、集合

一、集合 1.1、概述 集合与数组类似&#xff0c;只不过集合中的数据量可以动态的变化。 1.2、体系图 1.3、List集合 1.3.1、特点 存放的数据可以重复且有序。 1.3.2、常见操作 /*** List集合常见操作* */ Test public void listOperateTest() {List<String> cityList …

1.9 day7 IO进程线程

使用消息队列完成两个进程间的通信 进程1 #include <myhead.h> struct migbuf {long a;//消息类型char b[1024];//消息正文 }; #define SIZE (sizeof(struct migbuf)-sizeof(long)) int main(int argc, const char *argv[]) {//创建key值key_t key0;if((keyftok(".…