Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Does the code in finally block get executed if there is an exception and a return statement in a catch block?
Does the code in finally block get executed if there is an exception and a return statement in a catch block?
✍: Guest
If an exception occurs and there is a return statement in catch block, the finally block is still executed. The finally block will not be executed when the System.exit(1) statement is executed earlier or the system shut down earlier or the memory is used up earlier before the thread goes to finally block.
2012-08-10, 2393👍, 0💬
Popular Posts:
Can one execute dynamic SQL from Forms? Yes, use the FORMS_DDL built-in or call the DBMS_SQL databas...
What's difference between HashTable and ArrayList ? You can access array using INDEX value of array,...
How Is the Width a Parent Element Related to Child Elements? - CSS Tutorials - Understanding Multipl...
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
How do we create DCOM object in VB6? Using the CreateObject method you can create a DCOM object. You...