C++ Deque 库 - deque() 函数


描述

C++ 默认构造函数std::deque::deque()构造一个具有零元素的空双端队列。该容器的存储要求由内部分配器满足。

宣言

以下是 std::deque::deque() 构造函数的声明,形式为 std::deque 标头。

C++98

explicit deque (const allocator_type& alloc = allocator_type());

C++11

explicit deque (const allocator_type& alloc = allocator_type());

参数

alloc - 分配器对象。

返回值

构造函数永远不会返回值。

例外情况

该成员函数从不抛出异常。

时间复杂度

常数即 O(1)

例子

以下示例显示了 std::deque::deque() 构造函数的用法。

#include <iostream>
#include <deque>

using namespace std;

int main(void) {

   deque<int> d;

   cout << "Size of deque = " << d.size() << endl;

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

Size of deque = 0
双端队列.htm