String 类和标准模板库(一)

String 类和标准模板库

一、string对象
1.1 string类是由头文件string支持的,包含大量的方法,若干构造函数、用于将字符串赋给变量、合并字符串、比较字符串和访问各个元素的重载运算符以及用于在字符串中查找字符和子字符串的工具等。

string 类的构造函数

构造函数 描述
                              string(const char * s) 将string对象初始化为s指向的NBTS(null-terminated string)
                              string(size_type n, char c)

创建一个包含n个元素的对象,其中每个元素都被初始化为字符c

                               string(const string & str) 将一个string对象初始化为string对象str(复制构造函数)
                                          string() 创建一个默认的string对象,长度为0(默认构造函数)
                            string(const char * s,size_type n) 将string对象初始化为s指向的NBTS的前n个字符,即使超过NBTS结尾

                              template

                              string(Iter begin, Iter end)

将string对象初始化为区间【begin, end)内的字符,其中begin和end的行为就像指针,用于指定位置。

                string(const string & str,string size_type pos =0,

                                     size_type n = npos)

将一个string对象初始化为对象str中从位置pos开始到结尾的字符,或从位置pos开始的n个字符
                  string(string && str)noexcept c++11新增,将一个string对象初始化为string对象str,并可能修改str
                  string(initializer_listil) c++11新增,将string对象初始化为初始化列表il中的字符

程序说明:

  •  string one("Lottery Winner!");//生成一个string对象one并初始化
  •  string two(20, '$');                //将string对象two初始化为20个$字符组成的字符串
  • string three(one);                 //复制构造函数将string对象初始化为string对象one
  • char alls[] ="All's well that ends well";   string four(alls, 20);             //初始化four为数组alls【】的前20个字符
  • string six(alls+6, alls+10)     //初始化six为alls[]的第6到第10个元素 (包含6不包含10)
  • string seven (&four[6], &four[10])     //初始化six为alls[]的第6到第10个元素 (包含6不包含10)
  • string eight(four, 7, 16)          //初始化eight,从four的第8个字符开始,将16个字符复制到eight中

1.2 string类输入

C—风格字符串,3种方式:

  1. char info[100];                    
  2. cin>>info;                                //read a word
  3. cin.getline(info, 100);              //read a line
  4. cin.get(info, 100);                   //read a line

string对象两种方式输入:

  1. string stuff;
  2. 1. cin>>stuff ;                //字节输入
  3. 2.getline(cin,stuff)         //一行输入,并自动调整目标大小

两个版本的getline()都有可选参数,用于指定使用哪个字符确定输入的边界

  1. cin.getline(info, 100,':');    //边界:
  2. getline(stuff,':');                       //边界:

1.3 使用字符串

现在我们知道可以使用不同的方式创建string对象、显示string对象的内容,将数据读取和附加到string对象中和给string对象赋值,还可以比较字符串。String类对全部6个关系符都进行了重载,以便可以将string对象与另一个string对象、C-风格字符串进行比较。

eg:

  1. string snake1("cobra");
  2. string snake2("coral");
  3. char snake3[20] = "anaconda";
  4. if(snake1 < snake2)                                  //operate<(const string & ,const string & )
  5. if(snake1 == snake3)                               // operate==(const string & ,const string & )
  6. if(snake3 != snake2)                                // operate != (const string char* ,const string & )

可以确定字符串的长度。size()和length()成员函数都返回字符串种的字符数:

  1. if(snake1.length() == snake2.size())
  2. cout<<"Both strings have the same length.\n";

1.4 查找字符串

可以以多种不同的方式在字符串中搜索给定的子字符串或者字符。find()方法

方法原型                                              描              述
size_type find(const string & str, size_type pos  = 0)const 从字符串的pos 位置开始,查找子字符串str。如果找到,返回子字符串首次出现其首字符的索引。否则返回string::npos
size_type find(const  char *s, size_type pos  = 0)const 从字符串的pos 位置开始,查找子字符串s。如果找到,返回子字符串首次出现其首字符的索引。否则返回string::npos
size_type find(const  char *s, size_type pos  = 0, size_type n) 从字符串的pos 位置开始,查找子字符串s的前n个字符组成的子字符串。如果找到,返回子字符串首次出现其首字符的索引。否则返回string::npos
size_type find(const  char ch, size_type pos  = 0)const

从字符串的pos 位置开始,查找字符ch。如果找到,返回该字符首次出现的位置。否则返回string::npos

string库还提供了相关方法:rfind()、 find_first_of()、find_last_of()、find_first_not_of()和find_last_not_of().。它们的重载函数特征标都与find()方法相同。

eg:

 

  1. const string word = "hello world, my name is Bob";
  2. cout<
  3. cout<
  4. cout<
  5. cout<
  6. cout<
  7. cout<
  8. cout<
  9. cout<

 

你可能感兴趣的:(String 类和标准模板库(一))