C++ 学习一

# 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;
}

g++ strr.cpp

之后产生一个文件 : a.out

运行:

# ./a.out

得出:
value
-------------------------------------------------------------------
*********************************************************
-------------------------------------------------------------------

---读入未知数目的string对象:

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”键,来输入文件结束操作符。



-------------------------------------------------------------------

*********************************************************
-------------------------------------------------------------------
getline 输出整行:


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


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值