Blog

Filter posts by Category Or Tag of the Blog section!

Smart pointers in C++

Thursday, 22 September 2016

Smart pointers are a type of C++ object that automatically manage the lifetime of dynamically allocated objects. They are designed to prevent common memory-related errors such as memory leaks and dangling pointers, and make it easier to write exception-safe code.

 

C++ provides three types of smart pointers:

  1. Unique Pointers - A unique pointer is an exclusive ownership smart pointer. It has a unique pointer to a dynamically allocated object, and when the unique pointer goes out of scope, the object is deleted automatically.
  2. Shared Pointers - A shared pointer is a reference-counted smart pointer. Multiple shared pointers can share ownership of a dynamically allocated object, and the object is deleted automatically when the last shared pointer goes out of scope.
  3. Weak Pointers - A weak pointer is a non-owning smart pointer. It provides a way to observe objects managed by shared pointers without affecting their lifetime. A weak pointer can be converted to a shared pointer, but if the object has been deleted, the resulting shared pointer will be null.

 

Smart pointers are a powerful feature of C++ that help manage dynamic memory allocation and improve code safety. They can help to eliminate common errors and improve program performance by reducing the need for explicit memory management.

 

As an example, take a look at the following example:


 

#include <memory>

#include <iostream>



class MyClass {

public:

    MyClass() {

        std::cout << "Constructor called" << std::endl;

    }



    ~MyClass() {

        std::cout << "Destructor called" << std::endl;

    }



    void print() {

        std::cout << "Hello, world!" << std::endl;

    }

};



int main() {

    // Creating a shared pointer

    std::shared_ptr<MyClass> sharedPtr(new MyClass);

    sharedPtr->print(); // Accessing the object using the -> operator



    // Creating a unique pointer

    std::unique_ptr<MyClass> uniquePtr(new MyClass);

    uniquePtr->print();



    // Creating a weak pointer

    std::weak_ptr<MyClass> weakPtr(sharedPtr);

    std::shared_ptr<MyClass> sharedFromWeak = weakPtr.lock();

    sharedFromWeak->print();



    return 0;

}

 

In this example, we define a simple MyClass with a constructor, destructor, and print method. Then, we create three different smart pointers to an instance of this class: a shared_ptr, a unique_ptr, and a weak_ptr.

 

The shared_ptr is used to manage a reference-counted object. In this case, it's initialized with a new instance of MyClass. We can access the object's methods using the -> operator.

 

The unique_ptr is used to manage a pointer to an object that will be automatically deleted when the pointer goes out of scope. In this case, it's also initialized with a new instance of MyClass.

 

Finally, we create a weak_ptr from the shared_ptr, which allows us to obtain a shared_ptr to the same object without incrementing its reference count. We use the lock method of the weak_ptr to create a shared_ptr that can access the MyClass object's methods.

 

When the program runs, you'll see output indicating when the constructor and destructor of MyClass are called, as well as the "Hello, world!" message printed by the print method.

 

Category: Software

Tags: C++

comments powered by Disqus