Tagged Questions
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 ...
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
6answers
809 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 ...
4
votes
8answers
228 views
Using RAII with a character pointer
I see a lot of RAII example classes wrapping around file handles.
I have tried to adapt these examples without luck to a character pointer.
A library that I am using has functions that take the ...
4
votes
4answers
661 views
Is C++ like resource management possible in Java [closed]
In C++ we have Resource Acquisition Is Initialization (RAII) pattern, which extremely simplify the resource management. The idea is to provide some wrapping object for any kind of resources. The ...
0
votes
1answer
56 views
Is this a good way to manage initializations of COM?
I'm very new to anything involving Component Object Model, and I'm wondering if this method of managing calls to CoInitalize/CoUninitalize makes sense:
COM.hpp:
#pragma once
namespace WindowsAPI { ...