public member function

std::array::size

<array>
constexpr size_type size() noexcept;
Return size
Returns the number of elements in the array container.

The size of an array object is always equal to the second template parameter used to instantiate the array template class (N).

Unlike the language operator sizeof, which returns the size in bytes, this member function returns the size of the array in terms of number of elements.

Parameters

none

Return Value

The number of elements contained in the array object.
This is a constexpr.

Member type size_type is an alias of the unsigned integral type size_t.

Example

1
2
3
4
5
6
7
8
9
10
11
12
// array::size
#include <iostream>
#include <array>

int main ()
{
  std::array<int,5> myints;
  std::cout << "size of myints: " << myints.size() << std::endl;
  std::cout << "sizeof(myints): " << sizeof(myints) << std::endl;

  return 0;
}


Possible output:
size of myints: 5
sizeof(myints): 20

Complexity

Constant.

Iterator validity

No changes.

See also