What is meant by Resource Acquisition is Initialization (RAII)? www.technical-interview.com
|
|
This is a programming idiom which briefly means that you
This guarantees that whatever happens while the resource is in use, it will eventually get freed (whether due to normal return, destruction of the containing object, or an exception thrown). It is a widely used good practice in C++, because apart from being a safe way to deal with resources, it also makes your code much cleaner as you don't need to mix error handling code with the main functionality.
|
|||||||||||||
|
|
"RAII" stands for "Resource Acquisition is Initialization" and is actually quite a misnomer, since it isn't resource acquisition (and the initialization of an object) it is concerned with, but releasing the resource (by means of destruction of an object). At its very heart, the idiom features encapsulating resources (chunks of memory, open files, unlocked mutexes, you-name-it) in local, automatic objects, and having the destructor of that object releasing the resource when the object is destroyed at the end of the scope it belongs to:
Of course, objects aren't always local, automatic objects. They could be members of a class, too:
If such objects manage memory, they are often called "smart pointers". There are many variations of this. For example, in the first code snippets the question arises what would happen if someone wanted to copy |
||||
|
|