时间累加及时间字符串格式化输出

时间累加及时间格式化输出

有些应用场景需要获取到系统时间或者文件创建时间,并在此基础上计时,获取更新后的时间。此时可以搭配使用std::time_tstd::tm结构体

struct tm
{
    int tm_sec;   // seconds after the minute - [0, 60] including leap second
    int tm_min;   // minutes after the hour - [0, 59]
    int tm_hour;  // hours since midnight - [0, 23]
    int tm_mday;  // day of the month - [1, 31]
    int tm_mon;   // months since January - [0, 11]
    int tm_year;  // years since 1900
    int tm_wday;  // days since Sunday - [0, 6]
    int tm_yday;  // days since January 1 - [0, 365]
    int tm_isdst; // daylight savings time flag
};

注意std::tm中的年份为从1900开始过去的年数,而time_t是C和C++中用来表示时间的一种数据类型。它通常是一个整数类型,表示自1970年1月1日UTC(协调世界时)以来经过的秒数。这个日期和时间被称为UNIX纪元(Unix Epoch)或POSIX时间。

具体应用起来的流程如下:

#include <iostream>
#include <iomanip>
#include <ctime>
#include <chrono>

// 函数:将 std::time_t 转换为字符串格式
std::string timeToString(std::time_t time) {
    std::tm* localTime = std::localtime(&time);
    std::ostringstream oss;
    oss << std::put_time(localTime, "%Y-%m-%d %H:%M:%S");
    return oss.str();
}

int main() {
    // 获取当前系统时间
    std::chrono::system_clock::time_point currentTime = std::chrono::system_clock::now();
    std::time_t currentTime_t = std::chrono::system_clock::to_time_t(currentTime);

    // 将当前时间转换为 std::tm 结构体
    std::tm* currentTime_tm = std::localtime(&currentTime_t);

    // 累加一定时间间隔
    currentTime_tm->tm_hour += 24; // 增加24小时
    
    // 将累加后的时间转换为字符串格式并输出
    // mktime如果发生了进位,则进行进位操作
    std::string newTimeStr = timeToString(std::mktime(currentTime_tm));
    std::cout << "累加后的时间: " << newTimeStr << std::endl;

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Naruto_whuer

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值