gpt4 book ai didi

c++ - 对整数使用 atof

转载 作者:行者123 更新时间:2023-11-27 23:07:46 26 4
gpt4 key购买 nike

我继承了一些代码(从已经离开的人那里)并找到了这个小片段:

double minX = xVal.find('.') == string::npos ? (double)atoi(xVal.c_str()) : atof(xVal.c_str());
double minY = yVal.find('.') == string::npos ? (double)atoi(yVal.c_str()) : atof(yVal.c_str());

他选择对整数类型使用 atoi 有什么原因吗?我看不出问题:

double minX = atof(xVal.c_str());
double minY = atof(yVal.c_str());

谢谢。

最佳答案

真的,您不应该使用 atoi 或 atof。它们都已弃用,分别被 strtol 和 strtof 取代。

关于c++ - 对整数使用 atof,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22299152/

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