c++中localtime函数的用法是什么

c++
1317
2024/4/19 17:59:21
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C++中,localtime函数是用于将时间戳转换为本地时间的函数。它接受一个指向time_t类型的参数,该参数表示自1970年1月1日以来经过的秒数,然后返回一个指向tm结构的指针,该结构包含了本地时间的年、月、日、时、分、秒等信息。

下面是localtime函数的用法示例:

#include <iostream>
#include <ctime>

int main() {
    time_t currentTime;
    struct tm *localTime;

    // 获取当前时间的时间戳
    time(&currentTime);

    // 将时间戳转换为本地时间
    localTime = localtime(&currentTime);

    // 输出本地时间的年、月、日、时、分、秒
    std::cout << "Year: " << localTime->tm_year + 1900 << std::endl;
    std::cout << "Month: " << localTime->tm_mon + 1 << std::endl;
    std::cout << "Day: " << localTime->tm_mday << std::endl;
    std::cout << "Hour: " << localTime->tm_hour << std::endl;
    std::cout << "Minute: " << localTime->tm_min << std::endl;
    std::cout << "Second: " << localTime->tm_sec << std::endl;

    return 0;
}

在上面的示例中,我们首先获取当前时间的时间戳,然后使用localtime函数将其转换为本地时间,最后输出本地时间的年、月、日、时、分、秒等信息。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: Python与c++的区别有哪些