C++ Core Guidelines: Rules for Allocating and Deallocating

C++ Core Guidelines: Rules for Allocating and Deallocating

This is a cross-post from www.ModernesCpp.com.

The guidelines 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.

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 only deallocates the memory. Either 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 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
  • GCC 4.9 (on cppreference.com) produces no output
  • GCC 7.1 (cppreference.com) produces the expected output

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.

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 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.

 

Hoàng Anh Tu?n

Senior AI Engineer (Specialist) at DMP (Deep Learning, Computer Vision, NLP)

7 年

I don’t think r.10 is a rule. It should be changed to “use malloc and new carefully”. Using a smart pointer is not absolute if not careful.

回复
Sourabh Singh Tomar

Compiler Engineer @ AMD

7 年

Hi Rainer Grimm, would you like to suggest some smart pointer use advice, when dealing with resource management in modern c++! Thanks!

回复

要查看或添加评论,请登录

Rainer Grimm的更多文章

社区洞察

其他会员也浏览了