C++string转float
时间: 2023-09-04 15:17:22 浏览: 87
C++数据类型转换总结
可以使用 C++ 标准库中的 `stof` 函数将字符串转换为浮点数。示例代码如下:
```c++
#include <iostream>
#include <string>
int main() {
std::string str = "3.14";
float f = std::stof(str);
std::cout << f << std::endl;
return 0;
}
```
输出结果为:
```
3.14
```
阅读全文