1. 字符串(string): 字符串库
2. 数据定义:
以'\0' 结尾
3. 数据支持的操作(函数):
--- 下面仅仅罗列支持的函数,具体用法 请参考c++ library的说明。如有任何问题,请留言讨论。
(constrcutor) :
operator=:
Iterators(迭代器):
begin:
end:
rbegin:
rend:
Capacity(容量):
empty:
size:
max_size:
resize:
capcity:
reverse:
length:
Element access(数据访问):
operator[]:
at:
Modifiers(数据修改):
operator+=:
append:
assign:
push_back:
insert:
erase:
swap:
copy:
replace:
string operations:
c_str:
data
get_allocator
find
rfind
find_first_of
find_last_of
find_first_not_of
find_last_not_of
substr
compare
4. 应用
ide : visual studio
os : win7
g++:x86_64-w64-mingw32
reference:
1. c++ library