码迷,mamicode.com
首页 > 编程语言 > 详细

C++中string类的基本用法

时间:2016-03-23 22:13:55      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:

 1 #include <iostream>
 2 #include <set>
 3 
 4 using namespace std;
 5 
 6 int main()
 7 {
 8     string line;
 9     getline(cin,line,-);   //getline用法
10     cout<<line<<endl;
11     cout<<line.size()<<endl;  //<iostream>中包含<string>
12     cout<<line[0]<<endl;  //访问数组中的字符
13 
14     return 0;
15 }

 

C++中string类的基本用法

标签:

原文地址:http://www.cnblogs.com/hu983/p/5313090.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!