标签: c++ const
我尝试使用atof函数将字符串转换为double。 double strtod (const char* str, char** endptr)。它工作正常,但为什么endptr非const? **endptr始终指向*endptr,而不指向endptr。
atof
double strtod (const char* str, char** endptr)
endptr
**endptr
*endptr