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