Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4471283
  • 博文数量: 1148
  • 博客积分: 25453
  • 博客等级: 上将
  • 技术积分: 11949
  • 用 户 组: 普通用户
  • 注册时间: 2010-05-06 21:14
文章分类

全部博文(1148)

文章存档

2012年(15)

2011年(1078)

2010年(58)

分类: C/C++

2011-09-06 21:35:12


  1. #include <iostream>

  2. using std::string;//用到哪个标准库,声明哪个
  3. using std::endl;
  4. using std::cin;
  5. using std::cout;

  6. int main()
  7. {
  8.     //string对象的读写
  9.     string s;
  10.     cin >> s;
  11.     cout << s << endl;
  12.     //获取 字符串 大小
  13.     cout << "the number is :" << s.size() << endl;
  14.     //从string对象获取字符 size_type 字符串类型
  15.     for(string::size_type ix = 0; ix != s.size(); ix++)
  16.     {
  17.         cout << s[ix] << endl;
  18.     }
  19.     //打印第一个元素
  20.     cout << s[0] << endl;
  21.     return 0;
  22. }

  1. ywx@ywx:~/yu/c++_4th/3$ ./3_2
  2. yu
  3. yu
  4. the number is :2
  5. y
  6. u
  7. y




阅读(763) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~