在线文档教程
C++
容器 | Containers

std::list::empty

STD::List::空

bool empty() const;

检查容器是否没有元素,即是否begin() == end()...

参数

%280%29

返回值

true如果容器是空的,false否则。

例外

(none)(until C++11)
noexcept specification: noexcept(since C++11)

复杂性

常量。

下面的代码使用empty以检查std::list<int>包含任何元素:

二次

#include <list> #include <iostream> int main() { std::list<int> numbers; std::cout << "Initially, numbers.empty(): " << numbers.empty() << '\n'; numbers.push_back(42 numbers.push_back(13317 std::cout << "After adding elements, numbers.empty(): " << numbers.empty() << '\n'; }

二次

产出:

二次

Initially, numbers.empty(): 1 After adding elements, numbers.empty(): 0

二次

另见

sizereturns the number of elements (public member function)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/容器/list/空