strlen、strcpy 是 “C风格字符串处理函数”。string是C++的字符串类,不需要用这么罗嗦的函数调用语法
string b = "abc",c = "123";b = b + c; //字符串连接b.length(); //获取字符串长度b = c; //字符串复制