C++ 列表库 - list() 函数


描述

C++ 默认构造函数std::list::list()构造一个包含零个元素的空列表。

宣言

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

C++98

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

C++11

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

参数

alloc - 分配器对象。

该分配器对象负责执行所有内存分配。

返回值

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

例外情况

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

时间复杂度

常数即 O(1)

例子

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

#include <iostream>
#include <list>

using namespace std;

int main(void) {
   list<int> l;

   cout << "Size of list = " << l.size() << endl;

   return 0;
}

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

Size of list = 0
列表.htm