Condividi tramite


Classe bad_weak_ptr

Segnala un'eccezione weak_ptr non valida.

Sintassi

class bad_weak_ptr : public std::exception
{
    bad_weak_ptr();
    const char *what() throw();
};

Osservazioni:

La classe descrive un'eccezione che può essere generata dal costruttore shared_ptr Class che accetta un argomento di tipo weak_ptr Class. La funzione membro what restituisce "bad_weak_ptr".

Esempio

// std__memory__bad_weak_ptr.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>

int main()
{
    std::weak_ptr<int> wp;

    {
        std::shared_ptr<int> sp(new int);
        wp = sp;
    }

    try
    {
        std::shared_ptr<int> sp1(wp); // weak_ptr has expired
    }
    catch (const std::bad_weak_ptr&)
    {
        std::cout << "bad weak pointer" << std::endl;
    }
    catch (...)
    {
        std::cout << "unknown exception" << std::endl;
    }

    return (0);
}
bad weak pointer

Vedi anche

Classe weak_ptr