Namespaces
Variants

std::optional<T>:: operator bool, std::optional<T>:: has_value

From cppreference.net
Utilities library
constexpr explicit operator bool ( ) const noexcept ;
(desde C++17)
constexpr bool has_value ( ) const noexcept ;
(desde C++17)

Comprueba si * this contiene un valor.

Valor de retorno

true si * this contiene un valor, false si * this no contiene un valor.

Ejemplo

#include <iostream>
#include <optional>
int main()
{
    std::cout << std::boolalpha;
    std::optional<int> opt;
    std::cout << opt.has_value() << '\n';
    opt = 43;
    if (opt)
        std::cout << "value set to " << opt.value() << '\n';
    else
        std::cout << "value not set\n";
    opt.reset();
    if (opt.has_value())
        std::cout << "value still set to " << opt.value() << '\n';
    else
        std::cout << "value no longer set\n";
}

Salida:

false
value set to 43
value no longer set

Véase también

verifica si el objeto contiene un valor esperado
(función miembro pública de std::expected<T,E> )