std::array::empty
STD::数组::空
constexpr bool empty( | | (since C++11) (until C++14) |
---|---|---|
constexpr bool empty() const; | | (since C++14) |
检查容器是否没有元素,即是否begin() == end()
...
参数
%280%29
返回值
true
如果容器是空的,false
否则。
例外
noexcept
规格:
noexcept
复杂性
常量。
例
下面的代码使用empty
以检查std::array
包含任何元素:
二次
#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
二次
另见
size | returns the number of elements (public member function) |
---|
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。