Explicit Memory Management

Contents[Show]

Explicit memory management has in C++ a high complexity but also provides great functionality. Sadly, this special domain is not so known in C++. For example, you can directly create objects in static memory, in a reserved area, or even a memory pool. That is functionality, which is often key in safety-critical applications in the embedded world. Before the harvest is the work, therefore, I will give in this post an overview, before I dive deeper into the details.

 

In C++, we use new and new[] for memory allocation and delete and delete[] for memory deallocation. But that is by far not the whole story.

Memory allocation

new

Thanks to the operator new, you can dynamically allocate memory for the instance of a type.

int* i= new int;
double* x= new double(10.0);
Circle* c= new Circle;
Point* p= new Point(1.0, 2.0);

 

The in parentheses used arguments are the arguments for the constructor. The result of the new call is a pointer to the according to type. The initialization of the instance is happing after the allocation of the memory. Placement new uses the fact that new consists of two steps. If the object is an object of a class hierarchy, the constructors of all base classes will automatically be performed.

new[]

new[] creates in opposite to new a C array of objects. The newly created objects need a default constructor.

double* da= new double[5];
Circle* ca= new Circle[8];

Placement new

Placement new is often used to instantiate an object in a pre-reserved memory area. In addition, you can overload placement new globally and for your own data types. This is a big benefit that C++ offers.

1
2
3
4
5
char* memory= new char[sizeof(Account)];
Account* a= new(memory) Account;

char* memory2= new char[5*sizeof(Account)];
Account* b= new(memory2) Account[5];

 

Placement new needs an additional argument (lines 2 and 5). Lines 1 and 4 are why the operator new(sizeof(Account),memory) can be used. Or to say it the other way around. The object will be instantiated in the memory area memory. Accordingly, the same holds for the C array b.

Failed allocation

If the memory allocations fail new and new[] will raise a std::bad_alloc exception. But that is often not the behavior you want. Therefore, you can invoke placement new with a constant std::nothrow: char* c new(std::nothrow) char[10]. This call causes you will get a nullptr in the error case.

New handler

In the case of a failed allocation, you can use std::set_new_handler as your own handler. std::set_new_handler returns the older handler and needs a callable unit. This callable unit should take no argument and return nothing. You can get the currently used handler by invoking the function std::get_new_handler.

Your handler allows you to implement special strategies for failed allocations:

  • request more memory
  • terminate the program with std::terminate
  • throw an exception of type std::bad_alloc

 

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.

Memory deallocation

delete

A with new previously allocated memory will be deallocated with delete.

Circle* c= new Circle;
...
delete c;

 

The object's destructors and base classes' destructors will automatically be called. If the base class's destructor is virtual, you can destroy the object with a pointer or reference to the base class.

After the object's memory is deallocated, access to the object is undefined. You can point the pointer of the object to a different object.

delete[]

You have to use the operator delete[] to deallocate a C array that was allocated with new[].

Circle* ca= new Circle[8];
...
delete[] ca;

 

By invoking delete[] all destructors of the objects will automatically be invoked.

The deallocation of a C array with delete is undefined behavior.

Placement delete

According to placement new, you can implement placement delete. But, remarkably, the C++ runtime will not automatically call placement delete. Therefore, it's the programmer's duty.

A typically used strategy invokes the destructor in the first step and placement delete in the second step.  The destructor deinitializes the object, and placement new deallocates the memory.

char* memory= new char[sizeof(Account)];
Account* a= new(memory) Account;  // placement new
...
a->~Account();                    // destructor
operator delete(a,memory);        // placement delete

Of course, according to statements and strategies, the usage of placement delete for C arrays holds.

What's next?

The plan is crystal clear. In the next post, I will dig deeper into the overloading of operator new and delete.

 

 

 

 

 

 

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 Shanel 2017-01-30 14:17
Hello.This article was extremely interesting, especially because I was looking for thoughts on this
matter last Tuesday.
Quote
0 #2 Chong 2017-02-02 18:57
I'm no longer certain where you're getting your information, but great topic.
I needs to spend some time finding out more or working out more.
Thanks for magnificent info I was in search of this information for my mission.
Quote
0 #3 Fredric 2017-02-19 10:40
Exactly what I was looking for, regards forr posting.
Quote
0 #4 bridal abayas 2017-02-22 04:08
Wow that wwas unusual. I just wrote an extremely long comment but after I clicked submit
my comment didn't show up. Grrrr... well I'm not writing alll that ovdr again. Anyways, juust wnted to
say wonderful blog!
Quote
0 #5 Elvia 2017-03-07 17:44
Heya i'm for the primary tikme here. I found this board and I find It
really useful & it helped me oout a lot. I am hoping to present
one thing again and hdlp others such as you helped me.
Quote
0 #6 Patsy 2017-03-18 17:49
As a Newbie, I am always searching online for articles that can benefit me.

Thank you
Quote
0 #7 Julieta 2017-05-15 17:58
I likewise think therefore, perfectly written post!
Quote
0 #8 Margot 2017-05-28 22:29
Simply desire to say your article is as amazing. The clarity in your post
is simply cool and i could assume you're an expert on this subject.
Well with your permission let me to grab your feed to keep up to date with forthcoming post.
Thanks a million and please carry on the rewarding work.
Quote
0 #9 Swapna 2017-05-31 19:46
Could you also explain what happens when malloc and other glibc memory allocation routines are used with C++. Mainly, what can go wrong with this: msgSz += sizeof(int) + len * entrySz;
msg = (MessageHdr *) malloc(msgSz * sizeof(char));
char* cP = (char *)(msg+sizeof(MessageHdr));
memcpy((char *)(cP), addr, sizeof(Address));
cP = (char *)(cP+sizeof(Address));
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 1318

Yesterday 6503

Week 27575

Month 7821

All 12086030

Currently are 283 guests and no members online

Kubik-Rubik Joomla! Extensions

Latest comments