智能指针 因为bookkeeping area 是共用的,这里不会再 new 其构造函数还可以接受一个 Deleter 和 Allocator(从而可以和 placement new 配合),管理所有类型的 storage...来实现这种语义,其实现为 shared_ptr(ptr2).swap(*this); 或者用 s = shared_ptr(ptr2); 这是创建了另外一个 shared_ptr,然后进行 move ...
1、std::static_pointer_cast():当指针是智能指针时候,向上转换,用static_cast 则转换不了,此时需要使用static_pointer_cast。 2、std::dynamic_pointer_cast():当指针是智能指针时候,向下转换,用dynamic_cast 则转换不了,此时需要使用dynamic_pointer_cast(此处注意:base基类需要至少有一个virtual成员函数(即多态类...
//2.智能指针转换 std::shared_ptr<Father> father(new Son(son)); 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 此时son就是向上转换。无需显式转换既可以编译通过。 2、dynamic_cast 一般用于有继承关系的类之间的向下转换。 3、dynamic_pointer_cast 当指针是智能指针时候,向下转换,...
当指针是智能指针时候,向下转换,用dynamic_Cast 则编译不能通过,此时需要使用dynamic_pointer_cast。向下转换(含智能指针):struct Father { //基类Father }; struct Son:Father { //基类Father的派生类B }; std::shared_ptr<Father> father; std::shared_ptr<Son> son = std::dynamic_pointer_cast<Son>(...
可以理解为智能指针领域的dynamic_cast操作符。 总结一下:它们的基本区别,就是dynamci_cast用于裸指针和引用等动态类型的转型,而dynamic_pointer_cast主要用于智能指针的转型。 例子: //注意:dynamic_pointer_cast的模版参数只需要指定到类名即可 std::shared_ptr<ShaderMaterial> shaderMaterial = std::dynamic_pointer...
dynamic_pointer_cast与dynamic_cast用法类似,当指针是智能指针时候,向下转换,用dynamic_Cast 则编译不能通过,此时需要使用dynamic_pointer_cast。智能指针的用法可以参考上一篇博客。 ——— 版权声明:本文为CSDN博主「贾作真时真亦贾」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。 原文链...
`dynamic_cast` 在运行时检查类型的合法性,如果转换合法,则返回转换后的类型;如果不合法,且用于指针,则返回空指针,用于引用,则抛出 `std::bad_cast` 异常。 二者的主要区别在于它们作用的对象类型: 1. `std::dynamic_pointer_cast` 用于 `std::shared_ptr` 智能指针。 2. `dynamic_cast` 用于原生指针或...
dynamic_pointer_cast主要作用是实现智能指针之间的转换,它能够将基本智能指针按照派生类关系进行向下转换,并返回一个指向派生类的智能指针。这种转换可以保证类型安全,并且能够在运行时进行检查,从而避免出现错误。 二、使用步骤 使用dynamic_pointer_cast需要经过以下几个步骤: 1. 先创建一个基本智能指针,它可以指向基类...
我们可以使用智能指针类的构造函数来创建一个智能指针,该指针将管理之前创建的原始指针。 std::shared_ptr<int> shared_ptr(raw_ptr); 第四步:使用dynamic_pointer_cast进行类型转换 现在我们将使用dynamic_pointer_cast函数来将shared_ptr转换为不同类型的智能指针。调用dynamic_pointer_cast中的目标类型以及源类型作...
在这个示例中,Base类有一个虚函数func,Derived类继承自Base并重写了func函数,同时定义了一个特有的函数derivedFunc。在main函数中,我们通过std::unique_ptr<Base>智能指针管理了一个Derived对象,并使用dynamic_cast安全地将basePtr指针转换为Derived*类型。转换成功后,我们调用了Derived类的成员函数。