c++ string类使用学习;length、empty、find、insert;索引取值、遍历
参考:https://freecplus.net/8a3a94f9905a4eddbb7b94753608c4d1.html首先需要导入和设置std命名空间#include <string>using namespace std; // 指定缺省的使名空间。string str; // 创建string对象。或者#include <string>std::string str; // 创建string对象。代码**