# vi strr.cpp
#include<string>
#include<iostream>
using std::cout;
using std::endl;
using std::string;
int main(){
string s1("value");
cout << s1 <<endl;
return 0;
}
之后产生一个文件 : a.outg++ strr.cpp
得出:# ./a.out
1 #include<string>
2 #include<iostream>
3 using std::cout;
4 using std::endl;
5 using std::cin;
6 using std::string;
7 int main(){
8 string word;
9 while(cin >> word)
10 cout << word <<endl;
11 return 0;
12 }
13
结果:
[root@localhost testc++]# ./a.out
dd
dd
ff
ff
vv
vv
cc
cc
cc
cc
gg
gg
yyy rr
yyy
rr
操作系统使用不同的值作为文件结束符。Windows系统下我们通过键入control-z,即同时键入 "ctrl"键和“z”键,来输入文件结束操作符。Unix系统中,包括Mac OS-X机器,通常用control-d,即同时键入 "ctrl"键和“d”键,来输入文件结束操作符。
-------------------------------------------------------------------
运行结果:
1 #include<string>
2 #include<iostream>
3 using std::cout;
4 using std::endl;
5 using std::cin;
6 using std::string;
7 int main(){
8 string line;
9 while(getline(cin,line))
10 cout << line <<endl;
11 return 0;
12 }
13
[root@localhost testc++]# ./a.out
fjdd fjkf tooot pp
fjdd fjkf tooot pp
f
f
fgglkkcccc ogg yhh 44 00
fgglkkcccc ogg yhh 44 00