C++ Core Guidelines: Rules for Smart Pointers

Contents[Show]

There were a lot of C++ experts who said that smart pointers were the essential feature of C++11. Today, I will write about smart pointers in C++.

The C++ core guidelines have thirteen rules for smart pointers. Half of them deal with their owner semantics; half of them with the question: How should you pass a shared pointer to a function?

gold 513062 640

Here is an overview of the rules.

The first five rules (R.20 - R.24) are quite obvious. I have written a few posts about them. Let me paraphrase the rules and refer to my previous posts.

A std::unique_ptr is an exclusive owner of its resource; therefore, you can not copy it but only move it. In contrast, a std::shared_pointer shares ownership. If you copy or copy assign a shared pointer, the reference counter will automatically be increased; if you delete or reset a shared pointer, the reference counter will be decreased. If the reference counter becomes zero, the underlying resource will be deleted. Because of this management overhead, you should use a std::unique_ptr, if possible (R.21).

This overhead becomes, in particular true if you create a std::shared_ptr. Creating a std::shared_ptr requires the allocation of the resource and the reference counter, which is, in sum, quite an expensive job; therefore, you should use the factory function std::make_shared (R.22). std::make_shared makes only one allocation. This is a big performance improvement for std::shared_ptr. In comparison, in the post "Memory and Performance Overhead of Shared Pointers" the differences between creating and deleting raw pointers and shared pointers including the factory functions std::make_shared and std::make_unique.

There is an additional, vital reason to create an std::shared_ptr with std::make_shared, and an std::unique_ptr with std::make_unique: no memory leak (R.22 and R.23). Using two invocations of std::shared_ptr or std::unique_ptr in one expression can cause a memory leak if an exception happens. I was hoping you could read the details about this issue in my last post: C++ Core Guidelines: Rules for Allocating and Deallocating (R.13).

A std::weak_ptr is not a smart pointer. A std::weak_ptr is no owner and lends only the resource from its std::shared_ptr. Its interface is quite limited. Using the method lock on a std::weak_ptr, you can lift a std::weak_ptr to a std::shared_ptr. Of course, you have a question: Why do we need a std::weak_ptr? A std::weak_ptr helps to break the cycles of std::shared_ptr (R.24). These cycles are the reason a std::shared_ptr will not automatically release its resource. Or to say it the other way around. If you have a cycle of shared pointers, you will have a memory leak. Read the details of std::weak_ptr and how you can use them to overcome memory leaks with std::shared_ptr in my previous post std::weak_ptr.

Now I'm done with my summary of smart pointers. That is more or less general knowledge of smart pointers. This will not hold for the remaining rules. They deal with the question: How should you pass a shared pointer to a function?

 

Rainer D 6 P2 540x540Modernes C++ Mentoring

Be part of my mentoring programs:

 

 

 

 

Do you want to stay informed about my mentoring programs: Subscribe via E-Mail.

R.30: Take smart pointers as parameters only to explicitly express lifetime semantics

This rule is a little bit tricky. If you pass a smart pointer as a parameter to a function and you use this function only as the underlying resource of the smart pointer, you do something wrong. In this case, you should use a pointer or a reference as a function parameter because you don't have the lifetime semantics of a smart pointer.

Let me give you an example of a smart pointer's quite sophisticated lifetime management.

 

// lifetimeSemantic.cpp

#include <iostream>
#include <memory>

void asSmartPointerGood(std::shared_ptr<int>& shr){
  std::cout << "shr.use_count(): " << shr.use_count() << std::endl;  // (3)
  shr.reset(new int(2011));                                          // (5)
  std::cout << "shr.use_count(): " << shr.use_count() << std::endl;  // (4)
}

void asSmartPointerBad(std::shared_ptr<int>& shr){
  // doSomethingWith(*shr);
  *shr += 19;
}

int main(){
  
  std::cout << std::endl;
  
  auto firSha = std::make_shared<int>(1998);
  auto secSha = firSha;
  std::cout << "firSha.use_count(): " << firSha.use_count() << std::endl;  // (1)
  
  std::cout << std::endl;
  
  asSmartPointerGood(firSha);                                              // (2)
  
  std::cout << std::endl;
  
  std::cout << "*firSha: " << *firSha << std::endl;
  std::cout << "firSha.use_count(): " << firSha.use_count() << std::endl;
  
  std::cout << std::endl;
  
  std::cout << "*secSha: " << *secSha << std::endl;
  std::cout << "secSha.use_count(): " << secSha.use_count() << std::endl;
  
  std::cout << std::endl;
  
  asSmartPointerBad(secSha);                                              // (6)
  std::cout << "*secSha: " << *secSha << std::endl;
  
  std::cout << std::endl;
  
}

 

I will start with the excellent case for a std::shared_ptr. The reference counter in line (1) is two because I used the shared pointer firSha to copy-initialized secSha. Let's look closer at the invocation of the function asSmartPointerGood (2).  First (3), the reference count of shr is 2 and then becomes 1 in line (4).  What happened in line (5)? I reset shr to the new resource: new int(2011). Consequentially, the shared pointer firSha and secSha are immediately shared owners of different resources. You can observe the behavior in the screenshot.

lifetimeSemantic

If you invoke reset on a shared pointer, magic happens under the hood.

  • If you invoke reset without an argument, the reference counter will be decreased by one.
  • If you invoke reset with an argument and the reference counter was at least 2, you will get two independent shared pointer owning different resources. This is a kind of deep copy of shared pointers.
  • The resource will be released if you invoke reset with or without an argument and the reference counter becomes 0.

This magic is not necessary if you are only interested in the underlying resource of the shared pointer; therefore, a pointer or a reference is the right parameter for the function asSmartPointerBad (6).

Further information

Look also at a recent post by Bartek F. about a situation where weak_ptr prevents full memory cleanup: How a weak_ptr might prevent full memory cleanup of a managed object.

What's next?

There are six rules left for passing smart pointers to functions. So you know what I will write about in my next post.

 

 

 

Thanks a lot to my Patreon Supporters: Matt Braun, Roman Postanciuc, Tobias Zindl, G Prvulovic, Reinhold Dröge, Abernitzke, Frank Grimm, Sakib, Broeserl, António Pina, Sergey Agafyin, Андрей Бурмистров, Jake, GS, Lawton Shoemake, Animus24, Jozo Leko, John Breland, Venkat Nandam, Jose Francisco, Douglas Tinkham, Kuchlong Kuchlong, Robert Blanch, Truels Wissneth, Kris Kafka, Mario Luoni, Friedrich Huber, lennonli, Pramod Tikare Muralidhara, Peter Ware, Daniel Hufschläger, Alessandro Pezzato, Bob Perry, Satish Vangipuram, Andi Ireland, Richard Ohnemus, Michael Dunsky, Leo Goodstadt, John Wiederhirn, Yacob Cohen-Arazi, Florian Tischler, Robin Furness, Michael Young, Holger Detering, Bernd Mühlhaus, Matthieu Bolt, Stephen Kelley, Kyle Dean, Tusar Palauri, Dmitry Farberov, Juan Dent, George Liao, Daniel Ceperley, Jon T Hess, Stephen Totten, Wolfgang Fütterer, Matthias Grün, Phillip Diekmann, Ben Atakora, Ann Shatoff, and Rob North.

 

Thanks, in particular, to Jon Hess, Lakshman, Christian Wittenhorst, Sherhy Pyton, Dendi Suhubdy, Sudhakar Belagurusamy, Richard Sargeant, Rusty Fleming, John Nebel, Mipko, Alicja Kaminska, and Slavko Radman.

 

 

My special thanks to Embarcadero CBUIDER STUDIO FINAL ICONS 1024 Small

 

My special thanks to PVS-Studio PVC Logo

 

My special thanks to Tipi.build tipi.build logo

 

My special thanks to Take Up Code TakeUpCode 450 60

 

Seminars

I'm happy to give online seminars or face-to-face seminars worldwide. Please call me if you have any questions.

Bookable (Online)

German

Standard Seminars (English/German)

Here is a compilation of my standard seminars. These seminars are only meant to give you a first orientation.

  • C++ - The Core Language
  • C++ - The Standard Library
  • C++ - Compact
  • C++11 and C++14
  • Concurrency with Modern C++
  • Design Pattern and Architectural Pattern with C++
  • Embedded Programming with Modern C++
  • Generic Programming (Templates) with C++

New

  • Clean Code with Modern C++
  • C++20

Contact Me

Modernes C++,

RainerGrimmDunkelBlauSmall

Comments   

0 #1 Dmitry 2020-06-17 17:43
Hi thank you for the great article. Although everything very clear i had one question concerning this line "If you invoke reset without an argument, the reference counter will be decreased by one.". Probably I missunderstood something as in my case
std::shared_ptr tmp = std::make_shared( 10 );
std::cout
Quote
0 #2 Rainer Grimm 2020-06-18 05:58
Quoting Dmitry:
Hi thank you for the great article. Although everything very clear i had one question concerning this line "If you invoke reset without an argument, the reference counter will be decreased by one.". Probably I missunderstood something as in my case
std::shared_ptr tmp = std::make_shared( 10 );
std::cout

You have to use an html sequence (I put spaces in between & lt ;) to display a smaller-than symbol. In your case, the smaller-than symbol was interpreted as an opening html tag.
Quote

Stay Informed about my Mentoring

 

Mentoring

English Books

Course: Modern C++ Concurrency in Practice

Course: C++ Standard Library including C++14 & C++17

Course: Embedded Programming with Modern C++

Course: Generic Programming (Templates)

Course: C++ Fundamentals for Professionals

Course: The All-in-One Guide to C++20

Course: Master Software Design Patterns and Architecture in C++

Subscribe to the newsletter (+ pdf bundle)

All tags

Blog archive

Source Code

Visitors

Today 1240

Yesterday 6503

Week 27497

Month 7743

All 12085952

Currently are 214 guests and no members online

Kubik-Rubik Joomla! Extensions

Latest comments