std::array::empty
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
constexpr bool empty(); |
(C++11 起) | |
检查,如果容器有任何元素,即是否begin() == end().
原文:
Checks if the container has no elements, i.e. whether begin() == end().
目录 |
[编辑] 参数
(无)
[编辑] 返回值
true如果容器是空的,false其他方式
原文:
true if the container is empty, false otherwise
[编辑] 例外
[编辑] 复杂性
常数
[编辑] 为例
下面的代码使用
empty
检查,如果std::array<int>包含任何元素
原文:
The following code uses
empty
to check if a std::array<int> contains any elements:
#include <array> #include <iostream> int main() { std::array<int, 4> numbers {3, 1, 4, 1}; std::array<int, 0> no_numbers; std::cout << "numbers.empty(): " << numbers.empty() << '\n'; std::cout << "no_numbers.empty(): " << no_numbers.empty() << '\n'; }
输出:
numbers.empty(): 0 no_numbers.empty(): 1
See also
返回的元素数 (公共成员函数) |