博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vector.resize
阅读量:4157 次
发布时间:2019-05-25

本文共 608 字,大约阅读时间需要 2 分钟。

void resize ( size_type sz, T c = T() );
Change size
Resizes the vector to contain 
sz elements.
If 
sz is smaller than the current vector , the content is reduced to its first 
sz elements, the rest being dropped.
If 
sz is greater than the current vector , the content is expanded by inserting at the end as many copies of 
c as needed to reach a size of 
sz elements. This may cause a reallocation.
Notice that this function changes the actual content of the vector by inserting or erasing elements from the vector; It does not only change its storage . To direct a change only in storage capacity, use instead.

转载地址:http://kveti.baihongyu.com/

你可能感兴趣的文章
springmvc其他类获取request记得web.xml
查看>>
Java - 29 Java 序列化
查看>>
小朋友学C语言(8)
查看>>
AspNetCore 502.5
查看>>
hdu 1465 不容易系列之一
查看>>
python的字符串
查看>>
Javascript文件加载:LABjs和RequireJS
查看>>
Windows10系统下,如何彻底删除卸载MySQL
查看>>
2.Swift - 访问控制(private,internal,public)
查看>>
也谈[关于大型网站技术演进的思考--存储的瓶颈]
查看>>
敏捷开发实录(二)
查看>>
在eclipse中关联android源代码
查看>>
cssText
查看>>
B+树|MYSQL索引使用原则
查看>>
遍历指定目录下的图片文件 显示在gridview
查看>>
loopback 01
查看>>
百度实习第十二天
查看>>
linux挂载本地windows分区或目录
查看>>
MYSQL--事务处理
查看>>
(转)Makefile经典教程(掌握这些足够)
查看>>