std::optional
| Defined in header <optional>
|
||
template< class T >
class optional;
|
(since C++14) | |
The class template std::optional manages an optional contained value. The value may be in either initialized or uninitialized state.
A common use case for optional is the return value of a function that may fail. As opposed to other approaches, such as std::pair<T,bool>, optional handles expensive to construct objects well and is more readable, as the intent is expressed explicitly.
The value is guaranteed to be allocated within the optional object itself, i.e. no dynamic memory allocation ever takes place. Thus, optional object models an object, not a pointer, even though the operator*() and operator->() are defined.
A optional object with a value in initialized state is called engaged, whereas if the value is in uninitialized state, the object is called disengaged.
The optional object is engaged on the following conditions:
- The object is initialized with a value of type
T
- The object is assigned an engaged
optional.
The object is disengaged on the following conditions:
- The object is default-initialized.
- The object is initialized with a value of std::nullopt_t or a disengaged
optionalobject.
- The object is assigned a value of std::nullopt_t or a disengaged
optional.
Template parameters
| T | - | the type of the value to manage initialization state for. The type must meet the requirements of Template:concept |
Member types
| Member type | Definition |
value_type
|
T
|
Member functions
constructs the optional object (public member function of std::optional<T>)
| |
| destroys the contained value, if there is one (public member function of std::optional<T>)
| |
| assigns contents (public member function of std::optional<T>)
| |
Observers | |
| accesses the contained value (public member function of std::optional<T>)
| |
| checks whether the object contains a value (public member function of std::optional<T>)
| |
| returns the contained value (public member function of std::optional<T>)
| |
| returns the contained value if available, another value otherwise (public member function of std::optional<T>)
| |
Modifiers | |
| exchanges the contents (public member function of std::optional<T>)
| |
| constructs the contained value in-place (public member function of std::optional<T>)
| |
Non-member functions
(C++17)(C++17)(C++17)(C++17)(C++17)(C++17)(C++20) |
compares optional objects (function template) |
(C++17) |
creates an optional object (function template) |
(C++17) |
specializes the std::swap algorithm (function template) |
Helper classes
(C++17) |
hash support for std::optional (class template specialization) |