substr()  c_str()  size()/length()  empty()  clear() 

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
#include <vector>
 
using namespace std;
 
int main()
{
    string a = "abc";
 
    a += "def";
    a += "123";
 
    // substr(x,l)返回子串 第一个参数x是起始下标,第二个参数l是字串长度
    cout << a.substr(1, 2) << endl; 
 
    cout << a << endl;
 
    printf("%s\n", a.c_str()); // c_str()返回字符串的起始地址
    return 0; 
}