摘要:
string类的查找函数: int find(char c, int pos = 0) const;//从pos开始查找字符c在当前字符串的位置int find(const char *s, int pos = 0) const;//从pos开始查找字符串s在当前串中的位置int find(cons... 阅读全文
摘要:
#include std::set setName;int main(){ std::string strName = "世界英雄aa";//中文占两个字节,英文占一个字节 const char* name = strName.c_str(); int length = strNa... 阅读全文