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


描述

C++ 函数std::list::empty()测试 list 是否为空。大小为零的列表被视为空。

宣言

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

C++98

bool empty() const;

C++11

bool empty() const noexcept;

参数

没有任何

返回值

如果列表为空则返回 true,否则返回 false。

例外情况

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

时间复杂度

常数即 O(1)

例子

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

#include <iostream>
#include <list>

using namespace std;

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

   if (l.empty())
      cout << "List is empty." << endl;

   l.emplace_back(1);

   if (!l.empty())
      cout << "List is not empty." << endl;

   return 0;
}

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

List is empty.
List is not empty.
列表.htm