c++ string转float函数
时间: 2023-10-14 15:14:51 浏览: 147
你可以使用 `std::stof` 函数将 C++ 的字符串转换为浮点数。示例代码如下:
```c++
#include <iostream>
#include <string>
int main() {
std::string s = "3.14";
float f = std::stof(s);
std::cout << f << std::endl;
return 0;
}
```
输出结果为:
```
3.14
```
相关问题
C++string转float
使用C语言中的atof函数可以将字符串转换为float类型。
例如:
```
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "3.14159";
float f = atof(str);
printf("The value of f is %.6f\n", f);
return 0;
}
```
输出结果为:
```
The value of f is 3.141590
```
注意,如果字符串不能转换为float类型,atof函数会返回0.0。因此,在使用atof函数时,需要对返回值进行判断,以确保转换成功。
C++ string 转float
可以使用 `std::stof` 函数将字符串转换为浮点数。示例代码如下:
```cpp
#include <iostream>
#include <string>
int main() {
std::string str = "3.14159";
float f = std::stof(str);
std::cout << f << std::endl; // 输出 3.14159
return 0;
}
```
注意:如果字符串不能转换成浮点数,`std::stof` 函数会抛出 `std::invalid_argument` 异常。因此在使用该函数时应该进行错误处理。
阅读全文