用stringstream实现从数字到字符串的转化
Posted 村雨sup
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用stringstream实现从数字到字符串的转化相关的知识,希望对你有一定的参考价值。
代码简单,字符串到数字和数字到字符串的写法类似。
#include <sstream> #include <bits/stdc++.h> using namespace std; int main() { double num = 0.123456; string s; stringstream sstream; sstream << num; sstream >> s; cout << s << endl; sstream.clear(); return 0; }
——
以上是关于用stringstream实现从数字到字符串的转化的主要内容,如果未能解决你的问题,请参考以下文章