不推荐在多线程环境中使用strtol,因为它不是线程安全的。在多线程环境中,最好使用线程安全的函数来替代strtol,比如std::stoi或者std::stol。这些函数是C++标准库中的函数,会更加安全和可靠地处理多线程环境中的字符串转换操作。
strtol
std::stoi
std::stol