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



描述

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

声明

以下是来自 std::list 头文件的 std::list::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
list.htm
广告