描述
C++ 函数std::array::empty()测试数组的大小是否为零。
声明
以下是 std::array::empty() 函数形式 std::array 标头的声明。
constexpr bool empty() noexcept;
参数
空
返回值
如果数组大小为 0,则返回 true,否则返回 false。
异常
此成员函数从不抛出异常。
时间复杂度
常数,即 O(1)
示例
在下面的示例中,arr1 的大小为 0,这就是为什么它将被视为空数组并且成员函数将为 arr1 返回真值。
#include <iostream>
#include <array>
using namespace std;
int main(void) {
/* array size is zero, it will be treated as empty array */
array<int, 0> arr1;
array<int, 10> arr2;
if (arr1.empty())
cout << "arr1 is empty" << endl;
else
cout << "arr1 is not empty" << endl;
if (arr2.empty())
cout << "arr2 is empty" << endl;
else
cout << "arr2 is not empty" << endl;
}
让我们编译并运行上面的程序,这将产生以下结果——
arr1 is empty arr2 is not empty
相关用法
- C++ Array end()用法及代码示例
- C++ Array swap()用法及代码示例
- C++ Array max_size()用法及代码示例
- C++ Array get()用法及代码示例
- C++ Array back()用法及代码示例
- C++ Array data()用法及代码示例
- C++ Array tuple_size()用法及代码示例
- C++ Array fill()用法及代码示例
- C++ Array cbegin()用法及代码示例
- C++ Array at()用法及代码示例
- C++ Array cend()用法及代码示例
- C++ Array rbegin()用法及代码示例
- C++ Array begin()用法及代码示例
- C++ Array crend()用法及代码示例
- C++ Array size()用法及代码示例
- C++ Array rend()用法及代码示例
- C++ Array front()用法及代码示例
- C++ Array crbegin()用法及代码示例
- C++ Algorithm copy()用法及代码示例
- C++ Algorithm remove_if()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Array Library - empty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。