dynamic_pointer_cast Function
以 shared_ptr 的動態型別轉換。
template <class Ty, class Other>
shared_ptr<Ty> dynamic_pointer_cast(const shared_ptr<Other>& sp);
參數
Ty
控制所傳回的共用指標型別。Other
控制共用的引數的指標型別。sp
引數的共用的指標。
備註
樣板函式會傳回空的 shared_ptr 物件,如果dynamic_cast<Ty*>(sp.get())會傳回 null 指標。 否則它會傳回shared_ptr Class<Ty>擁有資源所擁有的物件sp。 運算式dynamic_cast<Ty*>(sp.get())必須是有效的。
範例
// std_tr1__memory__dynamic_pointer_cast.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
struct base
{
virtual ~base()
{
}
int val;
};
struct derived
: public base
{
};
int main()
{
std::shared_ptr<base> sp0(new derived);
std::shared_ptr<derived> sp1 =
std::dynamic_pointer_cast<derived>(sp0);
sp0->val = 3;
std::cout << "sp1->val == " << sp1->val << std::endl;
return (0);
}
需求
標頭: <memory>
Namespace: 標準