C++ string 转float
时间: 2023-09-06 15:14:17 浏览: 179
可以使用 `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` 异常。因此在使用该函数时应该进行错误处理。
相关问题
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`函数将C风格的字符串转换为浮点数。它是C++标准库中的函数,可以将字符串转换为float类型。以下是一个示例:
```cpp
#include <iostream>
#include <string>
int main() {
const char* str = "3.14";
float result = std::stof(str);
std::cout << "Float value: " << result << std::endl;
return 0;
}
```
在上面的示例中,我们将字符串"3.14"转换为浮点数,并将结果存储在`result`变量中。然后,我们通过`std::cout`将结果打印到标准输出。输出将显示为`3.14`。
阅读全文