c++ 获取当前时间(精确至秒、毫秒和微妙)

2023-11-21 00:04

本文主要是介绍c++ 获取当前时间(精确至秒、毫秒和微妙),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

头文件

#include <chrono>

三个概念

Duration(时间段)

概念

表示两个时间点之间的时间差。

时间单位

  • 小时(hours):std::chrono::hours

  • 分钟(minutes):std::chrono::minutes

  • 秒(seconds):std::chrono::seconds

  • 毫秒(milliseconds):std::chrono::milliseconds

  • 微秒(microseconds):std::chrono::microseconds

  • 纳秒(nanoseconds):std::chrono::nanoseconds

时间精度

  • 整数类型精度:std::chrono::duration<int, TimeUnit>
  • 长整数类型精度:std::chrono::duration<long, TimeUnit>
  • 浮点类型精度:std::chrono::duration<float, TimeUnit>
  • 双精度类型精度:std::chrono::duration<double, TimeUnit>

示例1

// 创建一个200毫秒的时间段
std::chrono::duration<int, std::milli> duration1(200); // 表示5秒的duration,使用长整数类型精度
std::chrono::duration<long, std::seconds> duration2(5);// 表示2.5秒的duration,使用浮点类型精度
duration<float, std::seconds> duration3(2.5);// 表示1分钟的duration,使用双精度类型精度
duration<double, std::minutes> duration4(1);

示例2

#include <iostream>
#include <chrono>
#include <thread>int main()
{// 创建两个时间点auto start = std::chrono::steady_clock::now();std::this_thread::sleep_for(std::chrono::seconds(5)); // 模拟5s耗时操作auto end = std::chrono::steady_clock::now();// 计算时间间隔std::chrono::duration<double> duration = std::chrono::duration_cast<std::chrono::duration<double>>(end - start);// 输出时间间隔std::cout << "Elapsed time: " << duration.count() << " seconds\n";return 0;
}

执行结果:

[root@localhost debug]# ./timeTest
Elapsed time: 5.00022 seconds
[root@localhost debug]#

Time point(时间点)

概念

特定时钟上的一个时间。

组成

  1. 时钟(Clock),时钟类型包括:

    • steady_clock(稳定时钟)
    • system_clock(系统时钟)
    • high_resolution_clock(高分辨率时钟)
  2. 表示时间的持续时间(Duration)

示例

#include <iostream>
#include <chrono>
#include <thread>int main()
{// 使用系统时钟获取当前时间点// std::chrono::system_clock::time_point currentTime = std::chrono::system_clock::now();auto currentTime = std::chrono::system_clock::now();std::this_thread::sleep_for(std::chrono::seconds(2));auto laterTime = std::chrono::system_clock::now();// std::chrono::duration<double> duration = std::chrono::duration_cast<std::chrono::duration<double>>(laterTime - currentTime);auto duration = std::chrono::duration_cast<std::chrono::duration<double>>(laterTime - currentTime);std::cout << "The duration is: " << duration.count() << std::endl;auto AfterTime = laterTime + std::chrono::hours(24);duration = std::chrono::duration_cast<std::chrono::duration<double>>(AfterTime - laterTime);std::cout << "The duration for 24H is: " << duration.count() << std::endl;return 0;
}    

执行结果:

[root@localhost debug]# ./timeTest
The duration is: 2.00589
The duration for 24H is: 86400
[root@localhost debug]#

Clock(时钟)

概念

提供了基准和刻度。

时钟类型

  • system_clock
    • system_clock是系统级别的时钟,它表示实时时钟,也就是指示当前时间的时钟。它的时间点是与系统的时钟相关联的,可能受到时钟调整和时区的影响;
    • system_clock用于获取当前的系统时间,可以用来进行日常时间计算和显示。它通常被用作默认的时钟类型;
    • system_clock的最小时间单位取决于系统,可能是秒、毫秒或微秒;
  • steady_clock
    • steady_clock是一个单调递增的时钟,不受任何时钟调整或时区的影响。它提供了一个稳定、可靠的时间基准,适合用于测量时间间隔和计算算法的执行时间;
    • steady_clock的最小时间单位取决于实现,通常是纳秒或微秒级别;
  • high_resolution_clock
    • 可用于测量小时间间隔的时钟。它通常使用最高分辨率的时钟源来提供更高的时间精度。在大部分平台上,high_resolution_clock是steady_clock的别名,因此也是一个单调递增的时钟;
    • 最小时间单位取决于实现,通常是纳秒或微秒级别;

示例1

#include <iostream>
#include <chrono>
#include <thread>int main()
{// std::chrono::steady_clock::time_point steady_start = std::chrono::steady_clock::now();auto steady_start = std::chrono::steady_clock::now();std::this_thread::sleep_for(std::chrono::seconds(1));auto steady_end = std::chrono::steady_clock::now();auto duration = std::chrono::duration_cast<std::chrono::duration<double>>(steady_end - steady_start);std::cout << "The steady_clock duration is: " << duration.count() << std::endl;// std::chrono::high_resolution_clock::time_point high_resolution_start = std::chrono::high_resolution_clock::now();auto high_resolution_start = std::chrono::high_resolution_clock::now();std::this_thread::sleep_for(std::chrono::seconds(1));auto high_resolution_end = std::chrono::high_resolution_clock::now();duration = std::chrono::duration_cast<std::chrono::duration<double>>(high_resolution_end - high_resolution_start);std::cout << "The high_resolution_clock duration is: " << duration.count() << std::endl;return 0;
}

执行结果:

[root@localhost debug.x64-linux-g8]# ./timeTest
The steady_clock duration is: 1.00066
The high_resolution_clock duration is: 1.00085
[root@localhost debug.x64-linux-g8]#

示例2

// 获取当前时间的时间戳#include <iostream>
#include <chrono>
#include <thread>int main()
{auto currentTime = std::chrono::system_clock::now();auto currentTime_s = std::chrono::time_point_cast<std::chrono::seconds>(currentTime);auto currentTime_ms = std::chrono::time_point_cast<std::chrono::milliseconds>(currentTime);auto currentTime_micro = std::chrono::time_point_cast<std::chrono::microseconds>(currentTime);auto currentTime_ns = std::chrono::time_point_cast<std::chrono::nanoseconds>(currentTime);auto valueS = currentTime_s.time_since_epoch().count();auto valueMS = currentTime_ms.time_since_epoch().count();auto valueMicroS = currentTime_micro.time_since_epoch().count();auto valueNS = currentTime_ns.time_since_epoch().count();std::cout << "Seconds: " << valueS << std::endl;std::cout << "Milliseconds: " << valueMS << std::endl;std::cout << "Microseconds: " << valueMicroS << std::endl;std::cout << "Nanoseconds: " << valueNS << std::endl;return 0;
}

执行结果:

[root@localhost debug]# ./timeTest
Seconds: 1700544228
Milliseconds: 1700544228873
Microseconds: 1700544228873536
Nanoseconds: 1700544228873536309
[root@localhost debug]#
示例3
// 将当前时间格式化为时间字符串
#include <iostream>
#include <chrono>
#include <iomanip>int main()
{auto currentTime = std::chrono::system_clock::now();std::time_t t = std::chrono::system_clock::to_time_t(currentTime);std::cout << "CurrentTime: " << std::put_time(std::localtime(&t), "%F %T") << std::endl;return 0;
}

执行结果:

[root@localhost debug]# ./timeTest
CurrentTime: 2023-11-20 14:50:35
[root@localhost debug]#

这篇关于c++ 获取当前时间(精确至秒、毫秒和微妙)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/398404

相关文章

Python MySQL如何通过Binlog获取变更记录恢复数据

《PythonMySQL如何通过Binlog获取变更记录恢复数据》本文介绍了如何使用Python和pymysqlreplication库通过MySQL的二进制日志(Binlog)获取数据库的变更记录... 目录python mysql通过Binlog获取变更记录恢复数据1.安装pymysqlreplicat

C#实现获取电脑中的端口号和硬件信息

《C#实现获取电脑中的端口号和硬件信息》这篇文章主要为大家详细介绍了C#实现获取电脑中的端口号和硬件信息的相关方法,文中的示例代码讲解详细,有需要的小伙伴可以参考一下... 我们经常在使用一个串口软件的时候,发现软件中的端口号并不是普通的COM1,而是带有硬件信息的。那么如果我们使用C#编写软件时候,如

C#实现WinForm控件焦点的获取与失去

《C#实现WinForm控件焦点的获取与失去》在一个数据输入表单中,当用户从一个文本框切换到另一个文本框时,需要准确地判断焦点的转移,以便进行数据验证、提示信息显示等操作,本文将探讨Winform控件... 目录前言获取焦点改变TabIndex属性值调用Focus方法失去焦点总结最后前言在一个数据输入表单

C++中实现调试日志输出

《C++中实现调试日志输出》在C++编程中,调试日志对于定位问题和优化代码至关重要,本文将介绍几种常用的调试日志输出方法,并教你如何在日志中添加时间戳,希望对大家有所帮助... 目录1. 使用 #ifdef _DEBUG 宏2. 加入时间戳:精确到毫秒3.Windows 和 MFC 中的调试日志方法MFC

Mysql DATETIME 毫秒坑的解决

《MysqlDATETIME毫秒坑的解决》本文主要介绍了MysqlDATETIME毫秒坑的解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着... 今天写代码突发一个诡异的 bug,代码逻辑大概如下。1. 新增退款单记录boolean save = s

通过C#获取PDF中指定文本或所有文本的字体信息

《通过C#获取PDF中指定文本或所有文本的字体信息》在设计和出版行业中,字体的选择和使用对最终作品的质量有着重要影响,然而,有时我们可能会遇到包含未知字体的PDF文件,这使得我们无法准确地复制或修改文... 目录引言C# 获取PDF中指定文本的字体信息C# 获取PDF文档中用到的所有字体信息引言在设计和出

python中os.stat().st_size、os.path.getsize()获取文件大小

《python中os.stat().st_size、os.path.getsize()获取文件大小》本文介绍了使用os.stat()和os.path.getsize()函数获取文件大小,文中通过示例代... 目录一、os.stat().st_size二、os.path.getsize()三、函数封装一、os

Python 标准库time时间的访问和转换问题小结

《Python标准库time时间的访问和转换问题小结》time模块为Python提供了处理时间和日期的多种功能,适用于多种与时间相关的场景,包括获取当前时间、格式化时间、暂停程序执行、计算程序运行时... 目录模块介绍使用场景主要类主要函数 - time()- sleep()- localtime()- g

深入理解C++ 空类大小

《深入理解C++空类大小》本文主要介绍了C++空类大小,规定空类大小为1字节,主要是为了保证对象的唯一性和可区分性,满足数组元素地址连续的要求,下面就来了解一下... 目录1. 保证对象的唯一性和可区分性2. 满足数组元素地址连续的要求3. 与C++的对象模型和内存管理机制相适配查看类对象内存在C++中,规

如何用Java结合经纬度位置计算目标点的日出日落时间详解

《如何用Java结合经纬度位置计算目标点的日出日落时间详解》这篇文章主详细讲解了如何基于目标点的经纬度计算日出日落时间,提供了在线API和Java库两种计算方法,并通过实际案例展示了其应用,需要的朋友... 目录前言一、应用示例1、天安门升旗时间2、湖南省日出日落信息二、Java日出日落计算1、在线API2