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;
}
需求
標題: <list>
命名空間: std