Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is the purpose of the final in the try-catch-final

Answer Posted / guest

finally will execute after catch block if try throw
exception else it will execute after try.

ex:

class a
{
public static void main(String []asd)
{

try
{
throw new Exception();
}catch(Exception e)
{
System.out.println("catch");
}
finally{
System.out.println("finally");
}
}
}

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can a main method be overloaded?

1004


Where pragma is used?

1024


Give me an example of array and linked list? Where they can be used?

993


How do you change an int to a string?

987


How do you sort arrays in java?

912


How many ways can an argument be passed to a subroutine and explain them?

1012


What is java argument list?

922


In a container there are 5 components. I want to display the all the components names, how will you do that one?

1026


Define inheritance with reference to java.

1068


What is ‘is-a ‘ relationship in java?

1001


What is the difference between stored procedure & function?

954


What is immutability in java?

1059


What sorting algorithm does javascript use?

965


What will be the initial value of an object reference which is defined as an instance variable?

1121


What is the use of a conditional inclusion statement in Java ?

1076