-
STL(三)string
- 定义:
- 字符串容器
- 模板类basic_string 实例:typedef basic_string<char> string;
- wstring同样为basic_string 实例,因此与string有类似的操作方式。
- 操作(捡几个比较常用的):
- char*--->string
- 构造函数:string ( const char * s, size_t n ); string ( const char * s );
- +操作符:string& operator+= ( const char* s );
- append函数:string& append ( const char* s, size_t n ); string& append ( const char* s );
- insert函数:string& insert ( size_t pos1, const char* s, size_t n); string& insert ( size_t pos1, const char* s );
- string---->char*
- c_str:const char* c_str ( ) const;(返回一const字符串指针,可进行字符串拷贝、比较等操作)
- data:const char* data() const;(返回一const字符指针,无字符串尾)
- copy函数:size_t copy ( char* s, size_t n, size_t pos = 0) const;(只是拷贝内容,没有添加字符串尾)
- 添加字符:
- push_back函数:void push_back ( char c );
- +操作符:string& operator+= ( char c );
- 删除字符(咋就没提供一个类似push_back的删除函数呢?):
- erase函数:iterator erase ( iterator position );
- 未完待续。。。
-
相关阅读:
day63-webservice 03.解析cxf提供的例子
day63-webservice 02.cxf环境搭建
30个非常有趣的404错误页面设计欣赏
30个非常有趣的404错误页面设计欣赏
30个非常有趣的404错误页面设计欣赏
JS一些常用的类库
JS一些常用的类库
JS一些常用的类库
100+ 值得收藏的 Web 开发资源
100+ 值得收藏的 Web 开发资源
-
原文地址:https://www.cnblogs.com/dahai/p/2532081.html
Copyright © 2020-2023
润新知