Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in smart-pointers

Pimpl idiom using shared_ptr working with incomplete types

Initializing Unique Pointers as a Class Member

When should we use a custom deleter instead of the default deleter in a unique_ptr?

Get array of raw pointers from array of std::unique_ptr

c++ arrays smart-pointers

C++ Why it's not the same address (pointers)

How do I create a duplicate instance of object contained in a shared pointer in c++?

How does it convert _bstr_t to BSTR when passing as an argument?

The advantage of reference linking over reference counting when implementing smart pointer?

how to properly destroy c++ classes with smart pointers

"Use of deleted function" when calling `std::unique_ptr` move constructor?

Can a std::unique_ptr be reassigned such that its old value is destroyed *before* the new one is constructed?

Where is the reference count of an object typically stored?

c++ smart-pointers

What happens if a object to which a smart pointer is pointing to commits suicide?

c++11 smart-pointers

How to check if a std::unique_ptr is null, if it is in a std::vector?

how this auto_ptr program works and what it does?

Polymorphism with smart pointer

Is it safe to initialize an auto_ptr with a pointer to a derived class?

c++ smart-pointers auto-ptr

Trouble wrapping std::istream, unique_ptr not null after moved

smart pointers - why use them, and which to use?

c++ smart-pointers