ProDeveloperTutorial.com

Tutorials and Programming Solutions
Menu
  • Shell Scripting
  • System Design
  • Linux System Programming
  • 4g LTE
  • Coding questions
  • C
  • C++
  • DSA
  • GIT
  • 450 DSA Cracker
  • 5G NR
  • O-RAN

C++ 11 Smart pointers : unique_ptr tutorial and example

prodevelopertutorial February 26, 2020

unique_ptr is a smart pointer available in C++ 11.

Below are the points that we shall see in unique_ptr.

1. Points on unique_ptr
2. Syntax for creating an unique pointer:
3. How to create an objet using make_unique?
4. Example 1
5. Example 2
6. How to use make_unique()?

Points on unique_ptr:

1. unique_ptr as the same suggests, it is unique and cannot be shared.
2. It cannot ne copied to another unique_ptr by using assignement operator.
3. The owner ship can only be moved from one to another.
4. It means that, when an object ownership is transffered, the original owner will no longer owns the object,
5. We use “unique_ptr” when we want to limit the ownership of the objects. Thereby simplyfying the program logic.

 

Syntax for creating an unique pointer:

unique_ptr<MyClass>  p (new MyClass);

 

How to create an objet using make_unique?

unique_ptr<MyClass>  p = make_unique();

 

Now let us understand “unique_ptr” with the help of numerous examples:

Example 1: Simple Example:

#include <iostream>
#include  <memory>
//for more C++ tutorial visit www.ProDeveloperTutorial.com
using namespace std;

class MyClass
{
  
  public:
  MyClass()
  {
      cout<<"In constructor"<<endl;
  }
  ~MyClass()
  {
      cout<<"In destructor"<<endl;
  }
  
  
};


int main() 
{ 
    unique_ptr<MyClass> p (new MyClass);
    
    return 0; 
} 

Output:

In constructor
In destructor

So what is so unique in unique_ptr?

Now add the below statement in main():

int main() 
{ 
    unique_ptr<MyClass> p (new MyClass);
    
    unique_ptr<MyClass> p1 = p;  // new statement added
    
    return 0; 
} 

You will recieve an error as below:

Main.cpp:27:25: error: call to deleted constructor of 'unique_ptr'
    unique_ptr<MyClass> p1 = p; 
                        ^    ~
/usr/bin/../lib/gcc/x86_64-linux-gnu/7.4.0/../../../../include/c++/7.4.0/bits/unique_ptr.h:388:7: note: 'unique_ptr' has been explicitly marked deleted here
      unique_ptr(const unique_ptr&) = delete;
      ^
1 error generated.

This is because, unique_ptr pointers are unique.

Example 2:

Now we create a function that will return “unique_ptr” created:

#include <iostream>
#include  <memory>
//for more C++ tutorial visit www.ProDeveloperTutorial.com
using namespace std;

class MyClass
{
  
  public:
  MyClass()
  {
      cout<<"In constructor"<<endl;
  }
  ~MyClass()
  {
      cout<<"In destructor"<<endl;
  }
  
  
};

unique_ptr<MyClass>  fun()
{
    unique_ptr<MyClass> p (new MyClass);
    return p;

}

int main() 
{ 
    cout<<"Entered main()"<<endl;
    unique_ptr<MyClass> p2 = fun();
    cout<<"Exited main()"<<endl;

    return 0; 
} 

Output:

Entered main()
In constructor
Exited main()
In destructor

 

Now you can think what is the difference between “p2 = p” and “p2 = fun()”?

Both are same, but you an achieve this by using move semantics.

i.e unique_ptr<MyClass> p1 = move(p);

Now the ownership is transffered from pointer p to pointer p2.

Here the ownership is not sharedm but rather moved.

 

How to use make_unique()?

 

Instead of using new, you can use make_unique() to create a new object.

It is recommended to use “make_unique()” instead of new to create an object.

Now we shall modify the function “fun” as below:

unique_ptr<MyClass>   fun()
{
    unique_ptr<MyClass>  p = make_unique<MyClass> ();
    return p;

}

All the O/P will remain same as we saw in previous example.

 

List Of Tutorials available in this website:

C Programming 20+ ChaptersC++ Programming 80+ Chapters
100+ Solved Coding QuestionsData Structures and Algorithms 85+ Chapters
System design 20+ ChaptersShell Scripting 12 Chapters
4g LTE 60+ ChaptersMost Frequently asked Coding questions
5G NR 50+ ChaptersLinux System Programming 20+ chapters
Share
Email
Tweet
Linkedin
Reddit
Stumble
Pinterest
Prev Article
Next Article

About The Author

prodevelopertutorial

Follow this blog to learn more about C, C++, Linux, Competitive Programming concepts, Data Structures.

Leave a Reply Cancel Reply

You must be logged in to post a comment.

ProDeveloperTutorial.com

Tutorials and Programming Solutions
Copyright © 2023 ProDeveloperTutorial.com
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie SettingsAccept
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT