I've seen reference in some C# posted questions to a "using" clause. Does java have the equivalent?
|
|
No, Java programmers are forced to use try{ ... } finally { ... } which is sad (though I suppose, try-finally is kind of equivalent, though it does not provide scoping the way using does). In Java:
As you can see the nesting gets out of control quite quickly; however, in C# (as I understand it), you can write something similar to this (excuse the java class names):
|
||||||||||||
|
|
|
Not that I'm aware of. You can somewhat simulate with a try...finally block, but it's still not quite the same. |
||
|
|
|
|
No, there is no using in Java, the most similar functionality is the "import" keyword. |
||||||
|
|
|
No there isn't. You can
This gives you the limited scope of the using clause, but there isn't any IDisposable interface to call finalization code. You can use try{}catch(){}Finally{}, but it doesn't have the sugar of using. Incidentally using finalizers in Java is generally a bad idea. |
||
|
|
|
|
I think you can achieve something similar to the "using" block, implementing an anonymous inner class. Like Spring does with the "Dao Templates". |
||
|
|
|
|
The closest you can get in Java is try/finally. Also, Java does not provide an implicit Disposable type. C#: scoping the variable outside a using block
Java: scoping the variable outside a block
C#: scoping the variable inside a block
Java: scoping the variable inside a block
|
|||
|
|
|
|
This is being talked about for Java 7: Automatic Resource Management |
|||
|
|
|
|
Well, using was syntactic sugar anyway so Java fellows, don't sweat it. |
||
|
|
|
|
The nearest equivalent within the language is to use try-finally.
becomes
Note the general form is always:
If acquisition is within the try block, you will release in the case that the acquisition fails. In some cases you might be able to hack around with unnecessary code (typically testing for null in the above example), but in the case of, say, ReentrantLock bad things will happen. If you're doing the same thing often, you can use the "execute around" idiom. Unfortunately Java's syntax is verbose, so there is a lot of bolier plate.
where
More complicated example my, for instance, wrap exceptions. |
||
|
|
|
|
If we get BGGA closures in Java, this would also open up for similar structures in Java. Gafter has used this example in his slides, for example:
|
||
|
|
|
|
The actual idiom used by most programmers for the first example is this:
There is less indenting using this idiom, which becomes even more important when you have more then 2 resources to cleanup. Also, you can add a catch clause to the structure that will deal with the new FileStream()'s throwing an exception if you need it to. In the first example you would have to have another enclosing try/catch block if you wanted to do this. |
||
|
