C++ Core Guidelines: Rules for Allocating and Deallocating

Contents[Show]

The guidelines has six rules for explicit memory allocation and deallocation. Six! Maybe you are surprised because there is a simple rule in modern C++: don't use new and delete. Obviously, the story is not so simple.

 

German Monopoly board in the middle of a game

Here are the six rules.

I will not write about the last two rules. First, the rule R.14 is not baked enough and second, the rule R.15 is quite special. If you want to learn more about overloading new and delete, you should read my posts to memory allocation and deallocation.

Before I dive into the rules, let me give you a little background which is necessary for understanding the rules. Creating an object in C++ with new consists of two steps.

  1. Allocate the memory for the object
  2. Constructs the object into the allocated memory

operator new or operator new [] makes the first step; the constructor the second step.

The same strategy applies to the destruction but the other way around. First, the destructor is called (if any) and then the memory is deallocated with operator delete or operator delete []. This two-step creation and destruction is the reason for the four rules. So, let's start.

R.10: Avoid malloc() and free()

What is the difference between new and malloc, or delete and free? The C-functions malloc and free do only half of the job. malloc allocates the memory and free only deallocates the memory. Neither does malloc invoke the constructor nor does free invoke the destructor.

This means, if you use an object which was just created via malloc, you will get undefined behaviour.

// mallocVersusNew.cpp

#include <iostream>
#include <string>

struct Record{
  Record(std::string na = "Record"): name(na){}                 // (4)
  std::string name;
};

int main(){
    
    std::cout << std::endl;
    
    Record* p1 = static_cast<Record*>(malloc(sizeof(Record)));  // (1)
    std::cout << p1->name << std::endl;                         // (3)

    auto p2 = new Record;                                       // (2)
    std::cout << p2->name << std::endl;                           
    
    std::cout << std::endl;
   
}

 

I only allocate in (1) memory for my Record object. The result is that the output p1->name in (3) is undefined behaviour. In contrast, the call (2) invokes the constructor in line (4). Undefined behaviour just means that you can not make any assumption about the output of the program.

Depending on the used platform and the used GCC, the result of the program is entirely different.

  • GCC 4.8.5 produces a core dump on my local PC

mallocVersusNewGcc

  • GCC 4.9 (on cppreference.com) produces no output

mallocVersusNewOnline49

  • GCC 7.1 (cppreference.com) produces the expected output

mallocVersusNewOnline71

R.11: Avoid calling new and delete explicitly

You should keep this rule in mind. The emphasis in this rule lies on the word explicitly because using smart pointers or containers of the Standard Template Library give you object which use implicitly new and delete.

 

Rainer D 6 P2 540x540Modernes C++ Mentoring

Stay informed about my mentoring programs.

 

 

Subscribe via E-Mail.

R.12: Immediately give the result of an explicit resource allocation to a manager object

This is the key ideas of a smart pointer such as std::unique_ptr<int> upInt(new int()) and will not hold in the counterexample from the guidelines. If the allocation of buffer fails the file handle will be lost.

void f(const std::string& name)
{
    FILE* f = fopen(name, "r");            // open the file
    std::vector<char> buf(1024);
    fclose(f);                             // close the file
}

 

R.13: Perform at most one explicit resource allocation in a single expression statement

This rule is a little bit tricky.

void func(std::shared_ptr<Widget> sp1, std::shared_ptr<Widget> sp2){
 ...
}

func(std::shared_ptr<Widget>(new Widget(1)), std::shared_ptr<Widget>(new Widget(2)));

 

This function call is not exception-safe and may, therefore, result in a memory leak. Why? The reason is that four operations must be performed to initialise the shared pointers.

  1. Allocate memory for Widget(1)
  2. Construct Widget(1)
  3. Allocate memory for Widget(2)
  4. Construct Widget(2)

The compiler is free to first allocate the memory for Widget(1) and Widget(2) and then construct both.

  1. Allocate memory for Widget(1)
  2. Allocate memory for Widget(2)
  3. Construct Widget(1)
  4. Construct Widget(2)

If one of the constructors throws an exception, the memory of the other object will not be automatically freed and we will get a memory leak.

It's quite easy to overcome this issue by using the factory function std::make_shared for creating an std::shared_ptr.  

func(std::make_shared<Widget>(1), std::make_shared<Widget>(2));

 

std::make_shared guarantees that the function will have no effect if an exception is thrown. The pendant function std::make_unique for creating an std::unique_ptr guarantees the same. 

What's next?

The next rules to resource management will follow the Rule R.11: avoid calling new and delete explicitly; therefore, the next post will be about the smart pointers std::unique_ptr, std::shared_ptr, and std::weak_ptr.

 

 

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 Dominik Vošček.

 

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

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

Tags: Memory

Mentoring

Stay Informed about my 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

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

Subscribe to the newsletter (+ pdf bundle)

All tags

Blog archive

Source Code

Visitors

Today 826

Yesterday 6519

Week 37388

Month 181559

All 11662713

Currently are 160 guests and no members online

Kubik-Rubik Joomla! Extensions

Latest comments