共用方式為


bad_weak_ptr Class

報告不正確的 weak_ptr 例外狀況。

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

備註

類別會描述可以從擲回的例外狀況shared_ptr Class使用的型別引數的建構函式weak_ptr Class。 成員函式what會傳回"bad_weak_ptr"。

範例

 

// std_tr1__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); 
    } 
 
  

需求

標頭: <memory>

Namespace: 標準

請參閱

參考

weak_ptr Class

其他資源

<memory> 成員