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


C++ array::size()用法及代码示例



数组与C-style数组相比,类通常更高效,light-weight更可靠。 C++ 11中数组类的引入为C-style数组提供了更好的替代方法。

array::size()

size()函数用于返回列表容器的大小或列表容器中的元素数。

用法:


arrayname.size()
参数:
No parameters are passed.
返回:
Number of elements in the container.

例子:

Input :myarray{1, 2, 3, 4, 5};
         myarray.size();
Output:5

Input :myarray{};
         myarray.size();
Output:0

错误和异常

1.它没有异常抛出保证。
2.传递参数时显示错误。

// CPP program to illustrate 
// Implementation of size() function 
#include <iostream> 
#include <array> 
using namespace std; 
  
int main() 
{ 
    array<int,5> myarray{ 1, 2, 3, 4, 5 }; 
    cout << myarray.size(); 
    return 0; 
}

输出:

5


相关用法


注:本文由纯净天空筛选整理自AyushSaxena大神的英文原创作品 array::size() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。