命名空间
变体
操作

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

来自 cppreference.com
< cpp‎ | container‎ | vector
 
 
 
 
bool empty() const;
(自 C++11 起为 noexcept)
(自 C++20 起为 constexpr)

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

内容

[编辑] 参数

(无)

[编辑] 返回值

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

[编辑] 复杂度

常数。

[编辑] 示例

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

输出

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

[编辑] 另请参阅

返回元素的数量
(公共成员函数) [编辑]
(C++17)
检查容器是否为空
(函数模板) [编辑]