C++ List 库 - empty() 函数
描述
C++ 函数 std::list::empty() 测试列表是否为空。 零大小的列表被认为是空的。
声明
以下是 std::list::empty() 函数形式 std::list 头的声明。
C++98
bool empty() const;
C++11
bool empty() const noexcept;
参数
None
返回值
如果列表为空,则返回 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.