string转为float
#include <iostream>
#include <string>int main()
{std::string str = "3.14";float num = std::stof(str);std::cout << num << std::endl;return 0;
}
int转string
to_string(C++11)
#include <string>int intValue = 123;
std::string intStr = std::to_string(intValue);
float转string
1. to_string(C++11)
#include <string>double doubleValue = 123.456;
std::string doubleStr = std::to_string(doubleValue);
2. std::stringstream
控制输出格式,如设置精度、使用科学计数法等
#include <string>
#include <sstream>float floatValue = 123.456f;
std::stringstream ss;
ss << std::fixed << std::setprecision(2); // 设置为固定小数点表示,并设置小数点后2位
ss << floatValue;
std::string floatStr = ss.str();
std::cout << floatStr << std::endl; // 输出: "123.46"
复制