温馨提示×

c++ localtime如何修改

c++
小樊
81
2024-11-24 11:50:50
栏目: 编程语言

localtime 是一个 C++ 标准库函数,用于将时间戳转换为本地时间

#include <iostream>
#include <ctime>

int main() {
    time_t rawtime = time(0); // 获取当前时间戳
    struct tm * timeinfo = localtime(&rawtime); // 将时间戳转换为本地时间

    // 修改年、月、日、时、分、秒
    timeinfo->tm_year += 1900; // 年份(从1900年开始)
    timeinfo->tm_mon += 1; // 月份(0-11,0表示1月,11表示12月)
    timeinfo->tm_mday += 1; // 日期(1-31)
    timeinfo->tm_hour += 1; // 小时(0-23)
    timeinfo->tm_min += 1; // 分钟(0-59)
    timeinfo->tm_sec += 1; // 秒数(0-59)

    // 将修改后的时间信息转换回时间戳
    time_t new_time = mktime(timeinfo);

    // 输出修改后的时间戳
    std::cout << "New timestamp: " << new_time << std::endl;

    return 0;
}

在这个示例中,我们首先获取当前时间戳,然后使用 localtime 函数将其转换为本地时间。接下来,我们修改年、月、日、时、分、秒字段,并使用 mktime 函数将修改后的时间信息转换回时间戳。最后,我们输出新的时间戳。

0