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 wrapping object's destructor is then responsible for releasing the resource, when it's going out of its scope. For example:

{
    auto_ptr<int> smartPointer = new int;
    // some other code

} // the memory allocated for the int is released automatically
  // by smartPointer's destructor

The most common usage are smart pointers. But, there are many other kinds of resources (files, mutexes, sockets, etc.) which can be managed exactly the same way.

In Java one doesn't have to bother the memory management. But all other types of resources remain. There is finally block, but its usage is quite inconvenient, especially when many different exceptions can be thrown.

So, my question is if there is any Java pattern which provides functionality equivalent to C++ RAII? If not, please share your best practices in this area (instead of the finally, unless it's used some sophisticated way).

link|improve this question

40% accept rate
See this question: stackoverflow.com/questions/194261/… – Eclipse Mar 26 '09 at 18:04
Also: stackoverflow.com/questions/477399/… – Eclipse Mar 26 '09 at 18:07
"which extremely simplify the resource management" are you freaking kidding me?? – hasen j Mar 26 '09 at 20:05
@hasen j: I don't understand the question. – oo_olo_oo Mar 26 '09 at 20:45
1  
@hasen not sure how resource management could be much simpler than C++ RAII from a source code point of view... – TofuBeer Mar 26 '09 at 21:43
show 1 more comment
feedback

closed as exact duplicate by Nemanja Trifunovic, jalf, David Thornley, Eclipse, Community Mar 26 '09 at 19:58

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

You can use the usual acquire; try { use; } finally { release; }. Alternatively you can abstract the resource handling with the Execute Around idiom.

link|improve this answer
feedback

The nearest equivalent is try/finally, see http://java.sun.com/docs/books/tutorial/essential/exceptions/finally.html

link|improve this answer
feedback

Joshua Bloch has proposed adding a mechanism called Automatic Resource Management to Java as part of Project Coin (small language changes for JDK 7):

link|improve this answer
Which is just (useful) syntactic sugar for try/catch/finally. So if you want to get something done today (as opposed to 2011), see the answers about try/catch/finally. – John M Mar 26 '09 at 19:16
Except that try/finally sucks in comparison to RAII. The original question was whether Java had anything comparable to RAII, and the answer is, apparently, no. – David Thornley Mar 26 '09 at 19:39
feedback

To many coders, the strength of the RAII idiom is that the life of the underlying resource is tied to a scope block, making things simpler to make and maintain; ultimately reducing errors from failing to release that resource.

Unfortunately you can't mimic this behaviour in Java as you can't create your own scope-bound structures. A language similar to Java that has tried to solve this problem is C#:

// explicit release
MyClass obj = MyClass();
obj.UseIt();
obj.Dispose();

// RAII-like (scope-bound) release
using(MyClass obj = new MyClass())
{
    obj.UseIt();
}

Perhaps we'll see functionality like this implemented in future.

link|improve this answer
python added this as well with the with construct – hasen j Mar 26 '09 at 20:10
That's not true. You can certainly simulate it in java as suggested by Tom Hawtin - tackline. – Kirakun Feb 1 '11 at 23:15
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.