Please enable JavaScript.
Coggle requires JavaScript to display documents.
Vector, I/O, Map - Coggle Diagram
Vector
功能函数
assign
-
Name.assign(Size,initialValue)
-
-
-
-
-
capacityAndsize
capacity
-
系统当前分配给vector的空间大小,这个空间大于等于size
-
-
-
-
-
创建形式
std::vector<defType> Name(Size,initialValue)
std::vector<defType> Name(first,last)
-
-
-
Map
-
构建形式
std::map<key_type,mapped_type,compare> Name
-
-