Tagged Questions

RAII, or *Resource Acquisition Is Initialization* is a common idiom used in C++ to manage the lifetime of resources, including memory allocations, file handles or database connections. In brief, every resource should be wrapped in an owning class, whose lifetime controls the lifetime of the resource.

learn more… | top users | synonyms

69
votes
5answers
7k views

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

Why is it wrong to use std::auto_ptr<> with standard containers?
57
votes
12answers
2k views

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

Something I often used back in C++ was letting a class A handle a state entry and exit condition for another class B, via the A constructor and destructor, to make sure that if something in that scope ...
40
votes
11answers
3k views

Please help us non-C++ developers understand what RAII is

Another question I thought for sure would have been asked before, but I don't see it in the "Related Questions" list. Could you C++ developers please give us a good description of what RAII is, why ...
40
votes
12answers
9k views

throwing exceptions out of a destructor

Most people say never throw an exception out of a destructor - doing so results in undefined behavior. Stroustrup makes the point that "the vector destructor explicitly invokes the destructor for ...
37
votes
7answers
7k views

RAII and smart pointers in C++

In practice with C++, what is RAII, what are smart pointers, how are these implemented in a program and what are the benefits of using RAII with smart pointers?
34
votes
7answers
14k views

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

Does C++ support 'finally' blocks? What is the RAII idiom? What is the difference between C++'s RAII idiom and C#'s 'using' statement?
31
votes
8answers
3k views

Why is there no RAII in .NET?

Being primarily a C++ developer the absence of RAII (Resource Acquisition Is Initialization) in Java and .NET has always bothered me. The fact that the onus of cleaning up is moved from the class ...
28
votes
31answers
11k views

Memory management in C++

What are some general tips to make sure I don't leak memory in C++ programs ? How do I figure out who should free memory that has been dynamically allocated ?
23
votes
7answers
2k views

RAII vs. exceptions

The more we use RAII in C++, the more we find ourselves with destructors that do non-trivial deallocation. Now, deallocation (finalization, however you want to call it) can fail, in which case ...
18
votes
19answers
2k views

Do programmers of other languages, besides C++, use, know or understand RAII?

I've noticed RAII has been getting lots of attention on Stackoverflow, but in my circles (mostly C++) RAII is so obvious its like asking what's a class or a destructor. So I'm really curious if ...
17
votes
10answers
1k views

Is there a better deterministic disposal pattern than nested “using”s in C#?

In C#, if I want to deterministically clean up non-managed resources, I can use the "using" keyword. But for multiple dependent objects, this ends up nesting further and further: using (FileStream ...
14
votes
2answers
2k views

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

Macros are fine. Templates are fine. Pretty much whatever it works is fine. The example is OpenGL; but the technique is C++ specific and relies on no knowledge of OpenGL. Precise problem: I want an ...
14
votes
8answers
975 views

Is a C++ destructor guaranteed not to be called until the end of the block?

In the C++ code below, am I guaranteed that the ~obj() destructor will be called after the // More code executes? Or is the compiler allowed to destruct the obj object earlier if it detects that it's ...
14
votes
4answers
2k views

Does ScopeGuard use really lead to better code?

I came across this article written by Andrei Alexandrescu and Petru Marginean many years ago, which presents and discusses a utility class called ScopeGuard for writing exception-safe code. I'd like ...
13
votes
10answers
700 views

C++ RAII not working?

I'm just getting started with RAII in C++ and set up a little test case. Either my code is deeply confused, or RAII is not working! (I guess it is the former). If I run: #include <exception> ...
13
votes
9answers
1k views

A Question On Smart Pointers and Their Inevitable Indeterminism

I've been extensively using smart pointers (boost::shared_ptr to be exact) in my projects for the last two years. I understand and appreciate their benefits and I generally like them a lot. But the ...
12
votes
4answers
388 views

When can garbage collection be faster than manual memory management? [closed]

Under what circumstances is garbage collection more efficient than manual memory management? (Here manual could mean using malloc and free as in C, or the cleaner RAII and smart pointer techniques ...
11
votes
6answers
876 views

Implementing RAII in pure C?

Is it possible to implement RAII in pure C? I assume it isn't possible in any sane way, but perhaps is it possible using some kind of dirty trick. Overloading the standard free function comes to ...
10
votes
2answers
253 views

Are destructors called after a throw in C++?

I ran a sample program and indeed destructors for stack-allocated objects are called, but is this guaranteed by the standard?
10
votes
4answers
5k views

CUDA: Wrapping device memory allocation in C++

I'm starting to use CUDA at the moment and have to admit that I'm a bit disappointed with the C API. I understand the reasons for choosing C but had the language been based on C++ instead, several ...
9
votes
2answers
264 views

longjmp and RAII

So I have a library (not written by me) which unfortunately uses abort() to deal with certain errors. At the application level, these errors are recoverable so I would like to handle them instead of ...
9
votes
2answers
341 views

What happens when we combine RAII and GOTO?

I'm wondering, for no other purpose than pure curiosity (because no one SHOULD EVER write code like this!) about how the behavior of RAII meshes with the use of goto (lovely idea isn't it). class Two ...
9
votes
9answers
873 views

Good or Bad C++ Idiom - Objects used purely for constructor/destructor?

I have a few classes which do nothing except in their constructors/destructors. Here's an example class BusyCursor { private: Cursor oldCursor_; public: BusyCursor() { ...
8
votes
1answer
174 views

Is there any research on (or better use of) of RAII in GC languages?

Note: Object Lifetime RAII not using/with block scope RAII It seems like its possible using an extra gc category, short lived objects(check gc category somewhat frequently), long lived objects(check ...
8
votes
5answers
919 views

Any RAII template in boost or C++0x

Is there any template available in boost for RAII. There are classes like scoped_ptr, shared_ptr which basically work on pointer. Can those classes be used for any other resources other than pointers. ...
8
votes
5answers
1k views

RAII in Java… is resource disposal always so ugly?

I just played with Java file system API, and came down with the following function, used to copy binary files. The original source came from the Web, but I added try/catch/finally clauses to be sure ...
7
votes
3answers
241 views

Why the Destructor in C++ de-allocated memory in reverse order of how they were initialised?

I'm new to C++ and Object Oriented programming. So I wanted to know what is the advantage in de-allocating memory in reverse order to variables?
7
votes
6answers
367 views

How to handle failure to release a resource which is contained in a smart pointer?

How should an error during resource deallocation be handled, when the object representing the resource is contained in a shared pointer? EDIT 1: To put this question in more concrete terms: Many ...
7
votes
4answers
1k views

RAII tutorial for C++

I'd like to learn how to use RAII in c++. I think I know what it is, but have no idea how to implement it in my programs. A quick google search did not show any nice tutorials. Does any one have ...
7
votes
6answers
810 views

What wrapper class in C++ should I use for automated resource management?

I'm a C++ amateur. I'm writing some Win32 API code and there are handles and weirdly compositely allocated objects aplenty. So I was wondering - is there some wrapper class that would make resource ...
7
votes
9answers
3k views

What is the best way to implement smart pointers in C++?

I've been evaluating various smart pointer implementations (wow, there are a LOT out there) and it seems to me that most of them can be categorized into two broad classifications: 1) This category ...
7
votes
4answers
1k views

Does Java support RAII/deterministic destruction?

It's been at least 5 years since I worked with Java, and back then, any time you wanted to allocate an object that needed cleaning up (e.g. sockets, DB handles), you had to remember to add a finally ...
7
votes
5answers
738 views

How do you pronounce RAII?

RAII (=resource acquisition is initialization) is used heavily in C++. I'm not a native speaker. So, how do you pronounce it?
6
votes
4answers
201 views

C++ RAII Questions

So as I understand it to implement RAII properly, if I where to call CreateFont, I'd wrap that in a class with CreateFont in the constructor and DeleteObject in the destructor, so it cleans it up when ...
6
votes
3answers
261 views

Stack-based object instantiation in D

I'm learning D, and am confused by an error I'm getting. Consider the following: module helloworld; import std.stdio; import std.perf; ptrdiff_t main( string[] args ) { auto t = new ...
6
votes
5answers
944 views

Can you use a shared_ptr for RAII of C-style arrays?

I'm working on a section of code that has many possible failure points which cause it to exit the function early. The libraries I'm interacting with require that C-style arrays be passed to the ...
6
votes
3answers
159 views

~1s latency control app: is this suitable for Java?

At my work we recently finished the system architecture for a control application which has a maximum latency of roughly one to two seconds. It is distributed on small ARM on-chip boxes communicating ...
6
votes
4answers
911 views

Destructors not called when native (C++) exception propagates to CLR component

We have a large body of native C++ code, compliled into DLLs. Then we have a couple of dlls containing C++/CLI proxy code to wrap the C++ interfaces. On top of that we have C# code calling into the ...
6
votes
6answers
480 views

Unit Testing Private Method in Resource Managing Class (C++)

I previously asked this question under another name but deleted it because I didn't explain it very well. Let's say I have a class which manages a file. Let's say that this class treats the file as ...
6
votes
1answer
288 views

RAII in Scheme?

Is there anyway to implement Resource Acquisation is Initialization in Scheme? I know that RAII does not work well in GC-ed languages (since we have no idea whe the object is destroyed). However, ...
5
votes
7answers
235 views

When has RAII an advantage over GC?

Consider this simple class that demonstrates RAII in C++ (From the top of my head): class X { public: X() { fp = fopen("whatever", "r"); if (fp == NULL) throw ...
5
votes
2answers
188 views

D Dynamic Arrays - RAII

I admit I have no deep understanding of D at this point, my knowledge relies purely on what documentation I have read and examples I have tried; albeit both are difficult as good documentation is hard ...
5
votes
3answers
347 views

Preventing header explosion in C++ (or C++0x)

Lets say with have generic code like the following: y.hpp: #ifndef Y_HPP #define Y_HPP // LOTS OF FILES INCLUDED template <class T> class Y { public: T z; // LOTS OF STUFF HERE }; ...
5
votes
4answers
555 views

RAII in Python - automatic destruction when leaving a scope

I've been trying to find RAII in Python. Resource Allocation Is Initialization is a pattern in C++ whereby an object is initialized as it is created. If it fails, then it throws an exception. In this ...
5
votes
3answers
162 views

Why is RAII and garbage collection mutually exclusive?

While I think I understand the gist of the problem (i.e. a good GC tracks objects, not scope), I don't know enough about the subject to convince others. Can you give me an explanation on why there ...
5
votes
4answers
244 views

When a RAII object fails to construct

Suppose I construct a RAII object, and that object may fail to construct. How do I handle this? try { std::vector<int> v(LOTS); // try scope ends here because that's what the catch is ...
5
votes
5answers
298 views

How to encapsulate a C API into RAII C++ classes?

Given a C API to a library controlling sessions that owns items, what is the best design to encapsulate the C API into RAII C++ classes? The C API looks like: HANDLE OpenSession(STRING sessionID); ...
5
votes
4answers
173 views

Having a destructor take different actions depending on whether an exception occurred

I have some code to update a database table that looks like try { db.execute("BEGIN"); // Lots of DELETE and INSERT db.execute("COMMIT"); } catch (DBException&) { ...
5
votes
3answers
359 views

Is shared ownership of objects a sign of bad design?

Background: When reading Dr. Stroustrup's papers and FAQs, I notice some strong "opinions" and great advices from legendary CS scientist and programmer. One of them is about shared_ptr in C++0x. He ...
5
votes
2answers
782 views

Making a HANDLE RAII-compliant using shared_ptr with a custom deleter

I've recently posted a general question about RAII at SO. However, I still have some implementation issues with my HANDLE example. A HANDLE is typedeffed to void * in windows.h. Therefore, the ...

1 2 3