public member function
<array>
std::array::size
constexpr size_type size() noexcept;
Return size
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
noneReturn Value
The number of elements contained in the array object.This is a compile-time constant expression (constexpr).
Member type
size_type is an alias of the unsigned integral type size_t.Example
|
|
Possible output:
size of myints: 5 sizeof(myints): 20
Complexity
Constant.Iterator validity
No changes.Data races
No contained elements are accessed: concurrently accessing or modifying them is safe.Exception safety
No-throw guarantee: this member function never throws exceptions.See also
- array::max_size
- Return maximum size (public member function)
- array::empty
- Test whether array is empty (public member function)