这意味着在代码中使用了 atoi 函数将字符串转换为整数,但 atoi 函数不会报告转换错误。建议使用 strtol 函数替代 atoi。
Clang-Tidy: 'atoi' used to convert a string to an integer value, but function will not report conver...
文章指出,atoi函数在转换字符串到整数时忽视错误处理,推荐使用strtol函数,因为它能更好地处理转换失败和溢出情况,提高程序的健壮性。
摘要由CSDN通过智能技术生成