gpt4 book ai didi

C++ - 'localtime' 此函数或变量可能不安全

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:59:18 30 4
gpt4 key购买 nike

出于学习目的,我正在用 C++ 编写一个简单的日志记录类。我的代码包含一个返回今天日期字符串的函数。但是,每当调用“localtime”时,我都会收到编译器错误。

std::string get_date_string(time_t *time) {
struct tm *now = localtime(time);
std::string date = std::to_string(now->tm_mday) + std::to_string(now->tm_mon) + std::to_string(now->tm_year);
return date;
}

我试过使用 #define _CRT_SECURE_NO_WARNINGS。它没有用,出现了同样的错误。我还尝试将 _CRT_SECURE_NO_WARNINGS 放在项目属性的预处理器定义中。这给出了一个 Unresolved external 错误。

有没有人知道该怎么做?

最佳答案

问题是 std::localtime 不是线程安全的,因为它使用静态缓冲区(在线程之间共享)。 POSIXWindows 都有安全的替代方案:localtime_rlocaltime_s .

这是我的做法:

inline std::tm localtime_xp(std::time_t timer)
{
std::tm bt {};
#if defined(__unix__)
localtime_r(&timer, &bt);
#elif defined(_MSC_VER)
localtime_s(&bt, &timer);
#else
static std::mutex mtx;
std::lock_guard<std::mutex> lock(mtx);
bt = *std::localtime(&timer);
#endif
return bt;
}

// default = "YYYY-MM-DD HH:MM:SS"
inline std::string time_stamp(const std::string& fmt = "%F %T")
{
auto bt = localtime_xp(std::time(0));
char buf[64];
return {buf, std::strftime(buf, sizeof(buf), fmt.c_str(), &bt)};
}

关于C++ - 'localtime' 此函数或变量可能不安全,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38034033/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com