deque::resize
為雙向佇列指定新的大小。
void resize(
size_type _Newsize
);
void resize(
size_type _Newsize,
Type _Val
);
參數
_Newsize
雙向佇列的新大小。_Val
要加入的新項目值變更為雙重佇列,如果新的大小大於原始大小。 如果省略此值,會為類別的新元素指派預設值。
備註
如果兩個佇列的大小小於要求的大小,則為 _Newsize,項目加入雙向佇列,直到達到所要求的大小。
如果兩個佇列的大小大於要求的大小,擷取最接近雙向佇列的結尾刪除,直到雙向佇列到達大小的 _Newsize。
如果兩個佇列的目前大小是所要求的大小,則不會採取任何動作會相同。
大小 會反映雙向佇列的目前大小。
範例
// deque_resize.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>
int main( )
{
using namespace std;
deque <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;
}
需求
標頭: <deque>
命名空間: std