1
vote
4answers
130 views
Is RAII safe to use in C#? And other garbage collecting languages?
I was making an RAII class that takes in a System.Windows.Form control, and sets its cursor. And in the destructor it sets the cursor back to what it was.
But is this a bad idea? …
1
vote
2answers
39 views
The Price of DuplicateHandle
Hello :)
I'm writing a class library that provides convenient object-oriented frontends to the C API that is the Windows Registry. I'm curious, however, what the best course of ac …
0
votes
2answers
79 views
Adding functionality to a handle wrapper.
I have a C++ RAII class for managing Win32 HANDLEs using boost::shared_ptr<> that looks a bit like this:
namespace detail {
struct NoDelete { void operator()( void* ) {}; };
}; …
1
vote
4answers
115 views
How to fix heap corruption
I've tried to build a very minimalistic memory read library to read some unsigned ints out of it. However, I run into a "HEAP CORRUPTION DETECTED" error message when the ReadUnsign …
3
votes
2answers
102 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. T …
0
votes
5answers
144 views
Making a non-object resource RAII-compliant
Hello,
in my code I use HANDLEs from windows.h. They are used like
HANDLE h;
if (!openHandleToSomething(arg1, arg2, &h)) {
throw std::exception("openHandleToSomething err …
3
votes
3answers
57 views
Can inversion of control and RAII play together?
I was just reading up on inversion of control (IOC) and it bothered me that it seems like it makes memory management a pain. Of course it seems ioc is mostly used in garbage collec …
3
votes
6answers
233 views
C# - Are objects immediately destroyed when going out of scope?
Can I trust that an object is destroyed and its destructor is called immediately when it goes out of scope in C#?
I figure it should since many common coding practices (e.g. trans …
3
votes
4answers
207 views
Is it possible to prevent an RAII-style class from being instantiated “anonymously”?
Suppose I have an RAII-style C++ class (edited since the original comment, my attempts at example code == FAIL):
class StateSaver
{
public:
StateSaver(int i) { saveState(); }
…
5
votes
4answers
195 views
Local variable scope question
Why is the following code prints "xxY"? Shouldn't local variables live in the scope of whole function? Can I use such behavior or this will be changed in future C++ standard?
I th …
22
votes
8answers
2k 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 …
9
votes
10answers
738 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 …
3
votes
3answers
131 views
Initialising an anonymous mutex-lock-holding class instance in the LHS of a comma operator
Suppose I have code something like this:
#include "boost/thread/mutex.hpp"
using boost::mutex;
typedef mutex::scoped_lock lock;
mutex mut1, mut2;
void Func() {
// ...
}
void …
1
vote
9answers
323 views
Is it possible to kill a C++ application on Windows XP without unwinding the call stack?
My understanding is that when you kill a C++ application through Task Manager in Windows XP, the application is still "cleanly" destructed - i.e. the call stack will unwind and all …
10
votes
9answers
358 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 …
