C2664 “double atof(const char *)”: 无法将参数 1 从“std::string”转换为“const char *” VS2019 auto str="123.4"; auto value=atof(str) ;//报错 auto value=atof(str.c_str()); //ok