libcstl
|
Non-automatic smart pointers. More...
Modules | |
Guarded pointers | |
Object to guard against direct copying of pointers. | |
Unique Pointers | |
Dynamically-allocated memory with a single owner. | |
Shared Pointers | |
Reference-counted, dynamically-allocated memory. | |
Weak Pointers | |
Non-"owning" reference to a shared pointer. | |
Non-automatic smart pointers.
In C++, memory can be allocated using unique_ptrs and shared_ptrs, and the memory associated with them is freed automatically when they go out of scope. The objects here attempt to mimic that behavior, but in C, the caller is responsible for managing the lifetime of the objects. The improvement here is that the caller must reset the object(s) whenever they go out of scope.
For example, without a smart pointer, the code may look something like:
With a smart pointer, the above would look like: