命名空间
变体
操作

std::forward_list<T,Allocator>::empty

来自 cppreference.com
< cpp‎ | 容器‎ | 前向列表
 
 
 
 
bool empty() const noexcept;
(自 C++11 起)

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

内容

[编辑] 参数

(无)

[编辑] 返回值

如果容器为空,则为 true,否则为 false

[编辑] 复杂度

恒定。

[编辑] 示例

以下代码使用 empty 检查 std::forward_list<int> 是否包含任何元素

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

输出

Initially, numbers.empty(): true
After adding elements, numbers.empty(): false

[编辑] 另请参阅

返回两个迭代器之间的距离
(函数模板) [编辑]