共用方式為


static_pointer_cast Function

靜態轉型為 shared_ptr。

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

參數

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

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

  • Other
    這個引數共用指標。

備註

樣板函式傳回空的物件 sp shared_ptr 是否為空的 shared_ptr 物件;否則會傳回擁有資源。 sp擁有的 shared_ptr Class<Ty> 物件。 運算式 static_cast<Ty*>(sp.get()) 必須是有效的。

範例

 

// std_tr1__memory__static_pointer_cast.cpp 
// compile with: /EHsc 
#include <memory> 
#include <iostream> 
 
struct base 
    { 
    int val; 
    }; 
 
struct derived 
    : public base 
    { 
    }; 
 
int main() 
    { 
    std::shared_ptr<base> sp0(new derived); 
    std::shared_ptr<derived> sp1 = 
        std::static_pointer_cast<derived>(sp0); 
 
    sp0->val = 3; 
    std::cout << "sp1->val == " << sp1->val << std::endl; 
 
    return (0); 
    } 
 
  

需求

標題: <memory>

命名空間: std

請參閱

參考

shared_ptr Class

const_pointer_cast Function

dynamic_pointer_cast Function