The try-finally tag has no wiki summary.
1
vote
2answers
79 views
good practice with try-finally in java?
I ran into a little problem today where I have a piece of code like this, which made me a little uncomfortable...
try{
//stuff...
} finally {
//finally stuff
}
I wonder if ...
0
votes
1answer
69 views
How to make finally in try-finally wait for threads to finish?
I'm using JPA in Swing based desktop application. This is what my code looks like:
public Object methodA() {
EntityManager em = emf.createEntityManager();
em.getTransaction().begin();
boolean ...
-2
votes
2answers
71 views
java 6 IO - wrapped streams closing [closed]
Consider :
public static void read(String filename) throws IOException {
String charsetName = "UTF-8";
InputStream file = new FileInputStream(filename); // say no problem
...
0
votes
3answers
73 views
Multiple markers at this line - Syntax error on token “)”, ; expected - Syntax error on token “(”, { expected
I'm studying Java (sorry for my poor english, it's not my native language) and when I do a "try-finally" block in Eclipse (JavaSE-1.7) in every "try" that I put, appears this message:
Multiple ...
94
votes
7answers
4k views
Why does changing the returned variable in a finally block not change the return value?
I have a simple Java class as shown below:
public class Test {
private String s;
public String foo() {
try {
s = "dev";
return s;
}
finally ...
4
votes
5answers
107 views
Is it safe to nest try/finally clauses like this?
As this is meant as a somewhat academic question regarding the behaviour of the try/finally clause, I tried to use an example that is very generic. Is there any danger in nesting a try/finally clause ...
3
votes
3answers
77 views
Discover if exception is thrown in finally part of try-finally block
I have a simple question an simple part of code, some basic try-finally block:
try {
// Some code which can throw an Exception
} finally {
// Some code which also can throw an Exception
}
My ...
7
votes
1answer
104 views
JVM Synchronized Finally Blocks
Looking at the Java Virtual Machine Specification and compiled code tells us how "synchronized" blocks are implemented in java. The following code:
public void testSync()
{
Object obj = ...
1
vote
1answer
78 views
Python Exception in finally clause eats prior exceptions
In my real case a Segmentation fault arises in the finally clause which I can't do anything about because it stems from an external library used via ctypes. Actually, I don't care about this segfault ...
0
votes
2answers
94 views
Executing finally block in order when $ErrorActionPreference = “Stop”
We're using Start-Transcript and Stop-Transcript to log the output from our PowerShell script.
The script is performing an installation of an application, so we're also using $ErrorActionPreference ...
4
votes
5answers
160 views
Why isn't the finally getting executed?
It was my assumption that the finally block always gets executed as long as the program is running. However, in this console app, the finally block does not seem to get executed.
using System;
...
4
votes
1answer
212 views
Memory leak in tornado generator engine with try/finally block when connections are closed
This awesome code, shows memory leak in tornado's gen module, when connections are closed without reading the response:
import gc
from tornado import web, ioloop, gen
class ...
0
votes
2answers
46 views
Using Try: and Finally: to delete an existing file and write the new output to the file
I was trying to check and delete an existing output file, and write on a new file. However, my code didn't seem to work because it only captures the output from the last iteration.
# delete inactive ...
2
votes
2answers
93 views
C# Monitor behavior in case user quits application
I am using the following code for a critical section of a web page
if(Monitor.TryEnter(lockObj,60000))
{
try{
//write some things to a file
}
finally
{
Monitor.Exit(lockObj);
...
-1
votes
3answers
74 views
Returning from method disposes corectly the object? [closed]
If you use the using method instead of lets say FileStream.Close();, will the class dispose correctly?
private static string GetString()
{
using(FileStream fs = new FileStream("path", ...
4
votes
2answers
280 views
Double exception throwing in a try / finally block
Here's the code example :
Try
Throw New FirstException()
Finally
Throw New SecondException()
End Try
I figured out it only throws SecondException out and FirstException just vanishes.
I ...
2
votes
1answer
163 views
When should I use “try” blocks, and which kind should I use?
Two very basic questions about exception handling in Delphi.
1) When to Try? My guess is that I don't need a Try clause around
strightforward code such as assignments, conditionals and loops
access ...
183
votes
5answers
4k views
try-finally block prevents StackOverflowError
Take a look at the following two methods:
public static void foo() {
try {
foo();
} finally {
foo();
}
}
public static void bar() {
bar();
}
Running bar() clearly ...
4
votes
8answers
129 views
In java, is there a way to ensure that multiple methods get called in a finally block?
So I have a try/finally block. I need to execute a number of methods in the finally block. However, each one of those methods can throw an exception. Is there a way to ensure that all these methods ...
0
votes
4answers
246 views
finally not called after try
For some reason within my console application I cannot get my finally block to run. I was writing this code to test how the finally block works so it is very simple:
static void Main()
{
int i = ...
4
votes
2answers
146 views
try ,catch, finally execution [duplicate]
Possible Duplicate:
throws Exception in finally blocks
The catch block is only executed if an exception is thrown in the try block.
The finally block is executed always after the ...
0
votes
2answers
115 views
What's the scope of using the 'finally' clause in python? [duplicate]
Possible Duplicate:
Purpose of else and finally in exception handling
I'd like to understand why the finally clause exists in the try/except statement. I understand what it does, but ...
9
votes
5answers
258 views
Why do we need the “finally” statement in Python?
I am not sure why we need finally in try...except...finally statements. In my opinion, this code block
try:
run_code1()
except TypeError:
run_code2()
other_code()
is the same with this one ...
2
votes
3answers
88 views
Testing the Return Value Within the Finally Block
All, this is a simple one. Is there a way of testing the returned value within a finally block without doing
bool result = false;
try
{
if (someCondition)
{
result = true;
...
2
votes
3answers
416 views
Behavior of a synchronized method with try and finally
Assume the following method:
public synchronized void a(){
try{
System.out.println("a");
return;
}finally{
System.out.println("a, finally");
}
}
I understand ...
11
votes
6answers
230 views
Using finally instead of catch
I've seen this pattern a few times now:
bool success = false;
try
{
DoSomething();
success = true;
}
finally
{
if ...
2
votes
1answer
507 views
Python: Using continue in a try-finally statement in a loop
Will the following code:
while True:
try:
print("waiting for 10 seconds...")
continue
print("never show this")
finally:
time.sleep(10)
Always print the ...
2
votes
4answers
284 views
Is considered a bad practice or exist any drawback using try/finally try/except instead of begin/end?
In many places in some Apps which I maintain , I've found code which uses a try/finally or try/except block in a for loop or if sentence avoiding the use of begin/end
Consider the next code (not ...
4
votes
4answers
1k 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 ...
3
votes
4answers
585 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;
1
vote
2answers
321 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
{
...
17
votes
6answers
482 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 ...
3
votes
2answers
127 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 ...
1
vote
1answer
89 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 ...
2
votes
2answers
228 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
2answers
724 views
database connection using “try finally ”
Can someone enlighten me on handling the database connection (and errors) using try finally ?
What would be the best practice ?
Seen various styles but I wonder what would be the best approach.
Should ...
12
votes
5answers
6k views
How to correctly write Try..Finally..Except statements?
Take the following code as a sample:
procedure TForm1.Button1Click(Sender: TObject);
var
Obj: TSomeObject;
begin
Screen.Cursor:= crHourGlass;
Obj:= TSomeObject.Create;
try
// do ...
4
votes
1answer
504 views
Response.Redirect() inside a try-finally [duplicate]
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 ...
1
vote
2answers
501 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
664 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 ...
0
votes
3answers
338 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: ...
4
votes
3answers
448 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, ...
1
vote
1answer
588 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()
...
10
votes
5answers
465 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 ...
2
votes
3answers
153 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 ...
8
votes
3answers
567 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 ...
7
votes
7answers
13k 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 ...
37
votes
6answers
2k 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 ...
4
votes
8answers
546 views
throw-catch logic
try
{
try
{
throw new Exception("From Try");
}
catch
{
throw new Exception("From Catch");
}
finally
{
throw new Exception("From Finally");
}
...
1
vote
3answers
1k views
Use of nested “try/finally” “try/except” statements
I have seen this code posted here on StackOverflow:
with TDownloadURL.Create(nil) do
try
URL := 'myurltodownload.com';
filename := 'locationtosaveto';
try
ExecuteTarget(nil);
...


