C++ 编程/代码/标准 C 库/函数/strtod
外观
语法 |
#include <cstdlib>
double strtod( const char *start, char **end );
|
函数 strtod() 返回在 start 中遇到的第一个双精度浮点数。end 被设置为指向 start 中该双精度浮点数之后剩余的内容。如果发生溢出,strtod() 返回 HUGE_VAL 或 -HUGE_VAL。
x = strtod( "42.0is_the_answer" );
结果是 x 被设置为 42.0。