共用方式為


const_pointer_cast

常數轉換成 shared_ptr。

template <class Ty, class Other>
    shared_ptr<Ty> const_pointer_cast(const shared_ptr<Other>& sp);

參數

  • Ty
    傳回的共用指標控制項型別。

  • Other
    引數會控制的型別共用指標。

  • Other
    引數具有共用指標。

備註

樣板函式傳回空白 shared_ptr 物件 const_cast<Ty*>(sp.get()) 是否傳回 null 指標;否則會傳回擁有資源由 sp所擁有的 shared_ptr 類別<Ty> 物件。 const_cast<Ty*>(sp.get()) 運算式必須是有效的。

範例

 

// std_tr1__memory__const_pointer_cast.cpp 
// compile with: /EHsc 
#include <memory> 
#include <iostream> 
 
int main() 
    { 
    std::shared_ptr<int> sp0(new int); 
    std::shared_ptr<const int> sp1 = 
        std::const_pointer_cast<const int>(sp0); 
 
    *sp0 = 3; 
    std::cout << "sp1 == " << *sp1 << std::endl; 
 
    return (0); 
    } 
 
  

需求

標頭: <memory>

命名空間: std

請參閱

參考

shared_ptr 類別

dynamic_pointer_cast

static_pointer_cast