📜  c++ 中使用 sstream 的 toString 方法 - 任何代码示例
📅  最后修改于: 2022-03-11 14:55:38.287000             🧑  作者: Mango
代码示例1
#include
template
std::string toString(const T& value)
{
std::ostringstream oss;
oss << value;
return oss.str();
}