Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

129
votes
21answers
35k views

In Java, does return trump finally?

If I have a try/catch block with returns inside it, will the finally block be called? For example: try { something(); return success; } catch (Exception e) { return ...
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?
33
votes
10answers
10k views

throws Exception in finally blocks

Is there an elegant way to handle exceptions that are thrown in the a finally block? For example: try { // Use the resource. } catch( Exception ex ) { // Problem with the resource. } finally { ...
28
votes
5answers
2k views

Why doesn't C# have support for first pass exception filtering?

Note: this is not a duplicate of Jeff's question. That question asked "Is an equivalent?" I know there isn't, and I want to know why! The reason I ask is that I've only just become clear on how ...
26
votes
5answers
320 views

Why is `continue` not allowed in a `finally` clause in Python?

The following code raises a syntax error: >>> for i in range(10): ... print i ... try: ... pass ... finally: ... continue ... print i ... File ...
20
votes
4answers
2k views

Curious C# using statement expansion

I've run ildasm to find that this: using(Simple simp = new Simple()) { Console.WriteLine("here"); } generates IL code that is equivalent to this: Simple simp = new ...
20
votes
9answers
7k views

Does a finally block always run?

Is there any condition where finally might not run in java? Thanks.
19
votes
10answers
1k views

C# Time of finally execution

Take this code: using System; namespace OddThrow { class Program { static void Main(string[] args) { try { throw new ...
13
votes
3answers
7k views

Javascript error handling with try .. catch .. finally

I have a suspicion that I'm using the finally block incorrectly, and that I don't understand the fundamentals of its purpose... function myFunc() { try { if (true) { ...
10
votes
4answers
273 views

What is the difference between final, finally, and finalize?

I'm new to Java and I want to know what is the difference between final, finally, and finalize? Thanks
10
votes
7answers
528 views

Determine if executing in finally block due to exception being thrown

Is it possible to determine if code is currently executing in the context of a finally handler as a result of an exception being thrown? I'm rather fond of using the IDisposable pattern to implement ...
10
votes
4answers
319 views

Multiple returns: Which one sets the final return value?

Given this code: String test() { try { return "1"; } finally { return "2"; } } Do the language specifications define the return value of a call to test()? In other ...
10
votes
14answers
2k views

Is there a favored idiom for mimicing Java's try/finally in C++?

Been doing Java for number of years so haven't been tracking C++. Has finally clause been added to C++ exception handling in the language definition? Is there a favored idiom that mimics Java's ...
8
votes
1answer
118 views

python try-finally

Why does the exception raised in foo whizz by unnoticed, but the exception raised in bar is thrown? def foo(): try: raise StandardError('foo') finally: return def bar(): try: raise ...
8
votes
11answers
223 views

Where the finally is neccessary?

I know how to use try-catch-finally. However I do not get the advance of using finally as I always can place the code after the try-catch block. Is there any clear example please?
8
votes
3answers
989 views

Using python “with” statement with try-except block

Is this the right way to use the python "with" statement in combination with a try-except block?: try: with open("file", "r") as f: line = f.readline() except IOError: ...
8
votes
9answers
6k views

In Java, is the “finally” block guaranteed to be called (in the main method)?

I'm a Java rookie and I was wondering, if I have the following typical Java code public class MyApp { public static void main(String[] args) { try { // do stuff } catch { // ...
7
votes
6answers
3k views

Proper replacement for the missing 'finally' in C++

Since there is no finally in C++ you have to use the RAII design pattern instead, if you want your code to be exception safe. One way to do this is by using the destructor of a local class like this: ...
6
votes
4answers
327 views

Delphi - try finally block is guaranteed by compiler to be executed correctly?

I know this was discussed on other topics also, what I'm asking is exactly the title of this question. Is there such case when try/finally the finally won't execute? try //some error here ...
6
votes
3answers
381 views

If I type Ctrl-C on the command line, will the finally block in Java still execute?

I'm running my Java application in cmd.exe in Windows. If I stop the process forcefully by pressing Ctrl-C, and the code at that moment was running in the try block, will the finally block still be ...
6
votes
2answers
274 views

object reference set to null in finally block

public void testFinally(){ System.out.println(setOne().toString()); } protected StringBuilder setOne(){ StringBuilder builder=new StringBuilder(); try{ builder.append("Cool"); return ...
6
votes
7answers
279 views

What is the gist of finally block in Java?

I think on the following examples; but could not figure out what the importance of the finally block is. Can you tell me the difference of the executions of these two code samples? Also a real life ...
6
votes
4answers
2k views

Does try/finally ignore exceptions?

I have a situation where I want certain code to be executed no matter what happens, but I need exceptions to also be passed on up the stack to be handled later. Is the following: try { // code } ...
6
votes
7answers
1k views

Why is my finally block not working in C#?

I've been helping a colleague debug some strange behavior in their code. The following sample illustrates this: static void Main(string[] args) { string answer = Sample(); ...
6
votes
4answers
688 views

return eats exception

I found the following behavior at least weird: def errors(): try: ErrorErrorError finally: return 10 print errors() # prints: 10 # It should raise: NameError: name ...
5
votes
3answers
166 views

loss exception in block catch

I run this code: public class User { public static void main(String args[]) { int array[] = new int[10]; int i = 1; try { System.out.println("try: " + i++); ...
5
votes
7answers
472 views

Set reference = null in finally block?

A colleague of mine sets reference to null in finally blocks. I think this is nonsense. public Something getSomething() { JDBCConnection jdbc=null; try { ...
5
votes
5answers
256 views

finally in exception handling

What exactly does a finally block in exception handling perform?
4
votes
2answers
143 views

finally block in daemon thread

I know that finally blocks in deamon threads would not be executed. But my meticulous nature tries to understand why and what happens in JVM so special that it could not call the code under this ...
4
votes
7answers
263 views

finally doesn't seem to execute in C# console application while using F5

int i=0; try{ int j = 10/i; } catch(IOException e){} finally{ Console.WriteLine("In finally"); Console.ReadLine(); } The finally block does not seem to execute when pressing F5 in ...
4
votes
7answers
341 views

understanding the finally block

I've written seven test cases for understanding the behavior of finally block. Can you guys explain the logic behind how finally works?? package core; public class Test { public static void ...
4
votes
3answers
521 views

Java try finally variations

This question nags me for a while but I did not found complete answer to it yet (e.g. this one is for C# ...
4
votes
5answers
358 views

try finally mystery

Consider, static void Main(string[] args) { Console.WriteLine(fun()); } static int fun() { int i = 0; try { ...
3
votes
2answers
91 views

Is it possible to avoid copying lambda functor in this situation?

I made a finally simulator using lambda in C++11 as below: #include <cstdio> template<typename Functor> struct Finalizer { Finalizer(Functor& func) : func_(func) {} // (1) ...
3
votes
6answers
247 views

java try finally block to close stream

I want to close my stream in the finally block, but it throws an IOException so it seems like I have to nest another try block in my finally block in order to close the stream. Is that the right way ...
3
votes
2answers
251 views

java try-catch-finally recursion question

public class Foo { public static void main(String[] args) { foo(); } public static void foo() { try { System.out.println("try"); foo(); } ...
3
votes
2answers
373 views

Simulating finally block in C++0x

Inspired from the other topic, I wrote this code which simulates a finally block: #include <cassert> #include <iostream> struct base { virtual ~base(){} }; template<typename ...
3
votes
7answers
2k views

Java Try Catch Finally blocks without Catch

I'm reviewing some new code. The program has a try and a finally block only. Since the catch block is excluded, how does the try block work if it encounters an exception or anything throwable? Does ...
3
votes
7answers
197 views

Finally: is it guaranteed to be invoked in any case

Is there any even small possibility that finally will not be invoked but application still be running? I'm releasing semaphore there finally { ...
3
votes
6answers
369 views

How should I initialize variables that will be used in a try/catch/finaly block?

If I am using a try/catch/finally block where and how should I initialize variables? For example say I'm trying to use a FileStream . I want to catch any exceptions thrown while creating or using the ...
3
votes
2answers
254 views

Exception from within a finally block

Consider the following code where LockDevice() could possibly fail and throw an exception on ist own. What happens in C# if an exception is raised from within a finally block? UnlockDevice(); try ...
3
votes
6answers
999 views

Java uninitialized variable with finally curiosity

I was trying to come up with obscure test cases for an alternative open-source JVM I am helping with (Avian) when I came across an interesting bit of code, and I was surprised that it didn't compile: ...
3
votes
5answers
985 views

Are there cases where a “finally” construct would be useful in C++?

Bjarne Stroustrup writes in his C++ Style and Technique FAQ, emphasis mine: Because C++ supports an alternative that is almost always better: The "resource acquisition is initialization" technique ...
2
votes
2answers
73 views

What reasons are that a `finally` block of code might be skipped?

I am refactoring my Windows Service so that access to the named Mutex is centralized in the worker thread's method. Instead of releasing it in OnStop() and ~DerivedService() it now should be released ...
2
votes
3answers
159 views

Return in try & catch versus return in finally?

Is either one of these risky? Is one better? Or is it one of those things you print out and throw a dart at to decide? I want to do this now that I understand how finally works: try { stuff ...
2
votes
3answers
855 views

C++ and try/catch/finally

I'm wondering a bit about C++ try/catch/finally blocks. I've seen these commands with two underscores like __try. But MVSC 2010 projects also run without the underscores. So when do you need these ...
2
votes
5answers
259 views

Why isn't the finally executed in this situation?

I have the following code: class SampleClass : IDisposable { public void Dispose() { Console.WriteLine("Execute Dispose!"); } } static void Main(string[] args) { SampleClass ...
2
votes
3answers
96 views

Return old value from setter w/o temp variable using finally

I was implementing the V setValue(V value) method in Map.Entry<K,V> and have done the following: @Override public T setValue(T value) { try { return this.value; } finally { ...
2
votes
8answers
205 views

What is the difference between finally and no finally?

What is the difference between try { // action A } catch(Exception e) { // action B } finally { // action C } and try { // action A } catch(Exception e) { // action B } // ...
2
votes
1answer
181 views

C++/CLI stack semantics equivalent of C#'s existing-object using statement?

I know that the C++/CLI equivalent to this C# code: using (SomeClass x = new SomeClass(foo)) { // ... } is this: { SomeClass x(foo); // ... } But is there a similarly succinct and ...

1 2