The try-finally tag has no wiki summary.
27
votes
5answers
1k views
Overhead of try/finally in C#?
We've seen plenty of questions about when and why to use try/catch and try/catch/finally. And I know there's definitely a use case for try/finally (especially since it is the way the using statement ...
15
votes
6answers
255 views
advice on nested Java try/finally code sandwiches
I would like some advice on a technique I bumped onto. It can be easily understood by looking at the code snippets, but I document it somewhat more in the following paragraphs.
Using the "Code ...
13
votes
8answers
2k views
Difference between try-finally and try-catch
What's the difference between
try {
fooBar();
} finally {
barFoo();
}
and
try {
fooBar();
} catch(Throwable throwable) {
barFoo(throwable); // Does something with throwable, logs it, ...
8
votes
5answers
155 views
Closing nested Reader
When reading from a text file, one typically creates a FileReader and then nests that in a BufferedReader. Which of the two readers should I close when I'm done reading? Does it matter?
FileReader fr ...
6
votes
2answers
286 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
9answers
893 views
Should I put a try-finally block after every Object.Create?
I have a general question about best practice in OO Delphi. Currently, I put try-finally blocks anywhere I create an object to free that object after usage (to avoid memory leaks). E.g.:
aObject := ...
4
votes
3answers
209 views
On using “using” and “finally” to cleanup resources
Is there any case in which the following structure is needed?
using (Something something = new Something())
{
try
{
}
finally
{
something.SomeCleanup();
}
}
Or, ...
4
votes
8answers
268 views
throw-catch logic
try
{
try
{
throw new Exception("From Try");
}
catch
{
throw new Exception("From Catch");
}
finally
{
throw new Exception("From Finally");
}
...
4
votes
7answers
353 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 ...
3
votes
2answers
81 views
How to ensure (like a try-finally) destruction of a HEAP-ALLOCATED object
I'm looking for a way to ensure that an object that is executed on the heap is ALWAYS deallocated when I'm done with it.
I know that if it's allocated on the stack, I can use RAII to ensure it will ...
3
votes
1answer
187 views
Response.Redirect() inside a try-finally [closed]
Possible Duplicate:
Will code in finally run after a redirect?
Hello,
What happens when I call a Response.Redirect() with EndResponse set to true/false inisde a try/finally block? Will the ...
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 ...
2
votes
4answers
77 views
How to simulate try-finally or try-except in languages that don't have them
Is there any way to simulate a try-finally or try-except in a language that doesn't have them?
If there's some random, unpredictable, exception happens i need to be sure some cleanup runs.
i could ...
2
votes
4answers
145 views
Does the statements in the Finally block still execute in this piece of code ?
Will finally block execute? if I pass exit; ?
procedure someProc;
begin
Try
Exit;
finally
do_something;
end;
end;
2
votes
2answers
104 views
C# Console App Not Calling Finally Block
I'm writing a console app to run as a scheduled task and it doesn't appear to execute the finally block of the running code when you close it using the close button. I've tried to replicate this ...
2
votes
3answers
128 views
Restoring saved values in a finally block?
I've seen this pattern used in a few different places now, but I'm not sure exactly what it's for or why it's needed. Given that I have seen it in quality projects, I'm sure it's useful, but I'd like ...
2
votes
2answers
1k views
Workaround for python 2.4's yield not allowed in try block with finally clause
I'm stuck on python2.4, so I can't use a finally clause with generators or yield. Is there any way to work around this?
I can't find any mentions of how to work around this limitation in python 2.4, ...
1
vote
1answer
96 views
finally block not executing after Application.Run(new main_form)
I wanted to have some code execute before my program exited, so I thought that editing to the VS created Program.cs to look like:
...
try
{
Application.Run(new main_form);
}
finally
{
...
1
vote
2answers
211 views
NullPointerException thrown after finally block completes
I'm trying to make an Android game, and I am following a few code samples to get my game loop working. It involves making a new thread. In the run() method I have a try/finally block. After the ...
1
vote
4answers
225 views
c# yield and try-finally
If I have a coroutine as follows, will the code in the finally block get called?
public IEnumerator MyCoroutine(int input)
{
try
{
if(input > 10)
{
Console.WriteLine("Can't count ...
1
vote
1answer
180 views
Closing a cx_Oracle Connection While Allowing for a Down Database
The following cx_Oracle code works fine when the database is up:
#!C:\Python27
import cx_Oracle
try:
conn = cx_Oracle.connect("scott/tiger@oracle")
try:
curs = conn.cursor()
...
1
vote
2answers
1k views
getting asynchronous socket error 10049 even if i use try..except
when ever i run my program(outside the debugger/ide) i get error asynchronous socket error 10049, am i not supposed to recieve a message dialoge : ''error''? see my code below
begin
try
...
0
votes
1answer
68 views
Maintaining a roll-backable flow of code in python without extreme identation
I've encountered a situation where I'm working over a piece of code where I command changes on a remote object (that is one I can't duplicate to work over a clone), then ask the remote object for some ...
0
votes
3answers
240 views
Extract nested try/finally blocks
How would you "extract" nested try/finally blocks from a routine into a reusable entity? Say I have
procedure DoSomething;
var
Resource1: TSomeKindOfHandleOrReference1;
Resource2: ...