3.1.1 string基本概念

本质:

string和char * 区别:

特点:

string 类内部封装了很多成员方法

例如:查找find,拷贝copy,删除delete 替换replace,插入insert

string管理char*所分配的内存,不用担心复制越界和取值越界等,由类内部进行负责

3.1.2 string构造函数

构造函数原型:

示例:

#include <string>
//string构造
void test01()
{
  string s1; //创建空字符串,调用无参构造函数
  cout << "str1 = " << s1 << endl;

  const char* str = "hello world";
  string s2(str); //把c_string转换成了string

  cout << "str2 = " << s2 << endl;

  string s3(s2); //调用拷贝构造函数
  cout << "str3 = " << s3 << endl;

  string s4(10, 'a');
  cout << "str3 = " << s3 << endl;
}

int main() {

  test01();

  system("pause");

  return 0;
}

总结:string的多种构造方式没有可比性,灵活使用即可

3.1.3 string赋值操作

功能描述: