用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实现从数字到字符串的转化的主要内容,如果未能解决你的问题,请参考以下文章

stringstream使用笔记

c++字符串如何转化为数字?

字符串转数字_atoi_stringstream

stringstream字符串流的妙用

从 stringstream 到 string 的转换会删除 '=' 字符

C++,怎么把字符转换成数字