list::resize
为列表指定一个新的大小。
void resize(
size_type _Newsize
);
void resize(
size_type _Newsize,
Type _Val
);
参数
_Newsize
该列表的新长度。_Val
如果新尺寸大于旧尺寸时,将新元素的值添加到列表。 如果省略值,将为新对象的类型分配默认值。
备注
如果容器的大小小于请求的大小, _Newsize, 那么会在向量中添加元素,直到该容器达到请求的大小。
如果容器的大小大于请求的大小,最接近容器末尾的元素将被删除,直到该容器大小为 _Newsize。
如果容器的当前大小与请求的大小相同,则不采取任何操作。
size 反映列表的当前大小.
示例
// list_resize.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
using namespace std;
list <int> c1;
c1.push_back( 10 );
c1.push_back( 20 );
c1.push_back( 30 );
c1.resize( 4,40 );
cout << "The size of c1 is " << c1.size( ) << endl;
cout << "The value of the last element is " << c1.back( ) << endl;
c1.resize( 5 );
cout << "The size of c1 is now " << c1.size( ) << endl;
cout << "The value of the last element is now " << c1.back( ) << endl;
c1.resize( 2 );
cout << "The reduced size of c1 is: " << c1.size( ) << endl;
cout << "The value of the last element is now " << c1.back( ) << endl;
}
要求
标头: <列表>
命名空间: std