C 语言

关注公众号 jb51net

关闭
首页 > 软件编程 > C 语言 > c++ chrono 获取当前时间

c++ chrono 获取当前时间的实现代码

作者:MeepoB

这篇文章主要介绍了c++ chrono 获取当前时间的实现代码,本文通过示例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

c++ chrono 获取当前时间

#include <chrono>
#include <iostream>
#include <format>
namespace chrono = std::chrono;
    void showCurrentMonth() {
        // 获取当前时间
        chrono::time_point now{ chrono::system_clock::now() };
        // 将时间转换为year_month_day
        chrono::year_month_day ymd{ chrono::floor<chrono::days>(now) };
        // 获取当前年月(类型为year_month)
        chrono::year_month currentYearMonth = ymd.year() / ymd.month();
    }
    // 获取当月第一天
    const auto firstDay = yearMonth / 1d;
    // 获取当月最后一天
    const auto lastDay = chrono::year_month_day(yearMonth / chrono::last);
    // 输出格式化的标题(年份与月份)
    std::string titleLine = std::format("** {:%Y-%m} **", yearMonth);
    // 输出日历表头(从周一到周日)
    std::vector<std::string> headerLineParts;
    for (const auto& weekday : Weekdays) {
        headerLineParts.push_back(std::format(ZhCNLocale, "{:L%a}", weekday));
    }
   // 通过weekday获取某一天是周几            
    auto currentWeekday = chrono::weekday{ std::chrono::sys_days{ currentDay } };            
    // 通过iso_encoding获取周几的编码(1-7)            
    auto currentWeekdayIndex = currentWeekday.iso_encoding() - 1;             
    // 计算本周第一天            
    auto firstDayOfWeek = chrono::year_month_day{ std::chrono::sys_days{ currentDay } - chrono::days(currentWeekdayIndex) }; 

C++标准库用chrono获取时间

C++有2种常用的获取当前时间的方式。本次主要围绕chrono展开。我的需求是,获取当前时间,并且打印到屏幕上。然后我就使用了这个system_clock::now()

错误示范
#include <iostream>
#include <chrono>
using namespace std;
int main(){
    auto start = std::chrono::system_clock::now();
    cout<<"today is"<<start<<endl;
}

使用上面这段代码并不行!因为start没有重载<<运算符。打印需要结合其他工具。如下:

#include <iostream>
#include <chrono>
using namespace std;
int main(){
    auto start = std::chrono::system_clock::now();
    std::time_t tt;
    tt=std::chrono::system_clock::to_time_t(start);
    string t=ctime(&tt);
    cout<<"today is"<<t<<endl;
}

到此这篇关于c++ chrono 获取当前时间的文章就介绍到这了,更多相关c++ chrono 获取当前时间内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文