摘要: 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... 阅读全文
posted @ 2015-09-27 17:20 zzyoucan 阅读(282) 评论(0) 推荐(0) 编辑
摘要: #include std::set setName;int main(){ std::string strName = "世界英雄aa";//中文占两个字节,英文占一个字节 const char* name = strName.c_str(); int length = strNa... 阅读全文
posted @ 2015-09-27 17:03 zzyoucan 阅读(218) 评论(0) 推荐(0) 编辑