c++ string类型转换成float类型
时间: 2023-07-19 14:07:50 浏览: 174
string转float
可以使用 `std::stof` 函数将 `std::string` 类型转换为 `float` 类型。
示例代码:
```c++
#include <iostream>
#include <string>
int main() {
std::string str = "3.14159";
float num = std::stof(str);
std::cout << num << std::endl;
return 0;
}
```
输出结果:
```
3.14159
```
阅读全文