当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Array empty()用法及代码示例



描述

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 Library - empty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。