C++ forward_list 库 - forward_list() 函数



描述

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

声明

以下是来自 std::forward_list 头文件的 std::forward_list::forward_list() 构造函数的声明。

C++11

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

参数

alloc - 分配器对象。

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

返回值

构造函数从不返回值。

异常

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

时间复杂度

常数,即 O(1)

示例

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

#include <iostream>
#include <forward_list>

using namespace std;

int main(void) {
   forward_list<int> fl;

   if (fl.empty())
      cout << "Forward list contains zero elements." << endl;

   return 0;
}

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

Forward list contains zero elements.
forward_list.htm
广告