Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in raii

C/C++ macro/template blackmagic to generate unique name

c++ c-preprocessor raii

Does Java support RAII/deterministic destruction?

java raii

C++ read the whole file in buffer [duplicate]

c++ raii

RAII vs. exceptions

c++ exception raii destructor

Are destructors called after a throw in C++?

Why is there no RAII in .NET?

Implementing RAII in pure C?

c raii

Is it abusive to use IDisposable and "using" as a means for getting "scoped behavior" for exception safety?

c# exception-handling raii

Understanding the meaning of the term and the concept - RAII (Resource Acquisition is Initialization)

General guidelines to avoid memory leaks in C++ [closed]

RAII and smart pointers in C++

c++ smart-pointers raii

Why is it wrong to use std::auto_ptr<> with standard containers?

c++ stl raii auto-ptr c++-faq

Do I need to manually close an ifstream?

c++ ifstream raii

If you shouldn't throw exceptions in a destructor, how do you handle errors in it?

c++ exception destructor raii

Does C++ support 'finally' blocks? (And what's this 'RAII' I keep hearing about?)

What is meant by Resource Acquisition is Initialization (RAII)?

c++ raii