C++中的文件读写操作(4)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "iostream"
#include "string"
#include "sstream" // 使用istringstream所需要的头文件

using namespace std;


/*
string头文件定义了三个类型来支持内存IO:
istringstream向string读取数据
ostringstrream向string写入数据
stringstream既可以从string读数据也可以向string写数据,就像string是一个IO流一样
*/

// istringstream的用法如下
int main(){
string str = "hello world! I am Lee.";
istringstream is(str);
string s;
while(is >> s){
cout << s << endl;
}
return 0;
}

本文标题:C++中的文件读写操作(4)

文章作者:Curry_Coder

发布时间:2019年08月09日 - 16:00:03

最后更新:2019年08月09日 - 16:00:23

原始链接:https://cdlwhm1217096231.github.io/C/C-中的文件读写操作-4/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

-------------本文结束感谢您的阅读-------------
觉得对您有所帮助,请我喝杯可乐吧!