Condividi tramite


weak_ptr::owner_before

Restituisce true se questo weak_ptr viene ordinato prima (o minore di) del puntatore fornito.

template<class Other>
    bool owner_before(const shared_ptr<Other>& ptr);
template<class Other>
    bool owner_before(const weak_ptr<Other>& ptr);

Parametri

  • ptr
    Un riferimento di lvalue a shared_ptr o a weak_ptr.

Valore proprietà/Valore restituito

Restituisce true se questo weak_ptr se si ordina prima del parametro del puntatore, false se non.

Note

La funzione membro di un modello restituisce true se *this è ordered beforeptr.

Requisiti

Header: <memory>

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe weak_ptr

<memory>