GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::array::data(3) C++ Standard Libary std::array::data(3)

std::array::data - std::array::data


T* data() noexcept; (since C++11)
(until C++17)
constexpr T* data() noexcept; (since C++17)
const T* data() const noexcept; (since C++11)
(until C++17)
constexpr const T* data() const noexcept; (since C++17)


Returns pointer to the underlying array serving as element storage. The pointer is
such that range [data(); data() + size()) is always a valid range, even if the
container is empty (data() is not dereferenceable in that case).


(none)


Pointer to the underlying element storage. For non-empty containers, the returned
pointer compares equal to the address of the first element.


Constant.


If size() is 0, data() may or may not return a null pointer.

// Run this code


#include <cstddef>
#include <iostream>
#include <span>
#include <array>


void pointer_func(const int* p, std::size_t size)
{
std::cout << "data = ";
for (std::size_t i = 0; i < size; ++i)
std::cout << p[i] << ' ';
std::cout << '\n';
}


void span_func(std::span<const int> data) // since C++20
{
std::cout << "data = ";
for (const int e : data)
std::cout << e << ' ';
std::cout << '\n';
}


int main()
{
std::array<int, 4> container { 1, 2, 3, 4 };


// Prefer container.data() over &container[0]
pointer_func(container.data(), container.size());


// std::span (C++20) is a safer alternative to separated pointer/size.
span_func({container.data(), container.size()});
}


data = 1 2 3 4
data = 1 2 3 4


front access the first element
(C++11) (public member function)
back access the last element
(C++11) (public member function)
size returns the number of elements
(C++11) (public member function)
span a non-owning view over a contiguous sequence of objects
(C++20) (class template)
data obtains the pointer to the underlying array
(C++17) (function template)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.