我是靠谱客的博主 漂亮猎豹,最近开发中收集的这篇文章主要介绍isstreamstream 头文件#include ,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

http://blog.csdn.net/modiz/article/details/9464309

字符串一些输入和转换问题。

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <cmath>
#include <queue>
#include <map>
#include <stack>
#include <list>
#include <vector>
#include <sstream>
#define LL __int64
#define EPS 1e-8
using namespace std;
int main()
{
double n=100;
char s[1000];
sprintf(s,"%lf",n);
//cout<<s<<endl;
string a="10000";
stringstream stream;
int m=0;
stream<<a;
stream>>m;
cout<<m<<endl;
stream.clear();
stream.str("1 2 3.5");
cout<<stream.str()<<endl;
int q,w;double e;
stream>>q;
cout<<q<<endl;
stream>>w;
cout<<w<<endl;
stream>>e;
cout<<e<<endl;
ostringstream ostr;
ostr.str("abc");
cout<<ostr.str()<<endl;
//如果构造的时候设置了字符串参数,那么增长操作的时候不会从结尾开始增加,
//而是修改原有数据,超出的部分增长
ostr.put('d');
ostr<<"efg";
cout<<ostr.str()<<endl;
stringstream ss("asd");
cout<<ss.str()<<endl;
ss.put('f');
ss<<"gh";
cout<<ss.str()<<endl;
return 0;
}


最后

以上就是漂亮猎豹为你收集整理的isstreamstream 头文件#include 的全部内容,希望文章能够帮你解决isstreamstream 头文件#include 所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部