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 are the differences between final,finally,finalize
methods?

Answer Posted / sunil

final variable is a constant.
final method cann't be overrid.
final class cann't be subclassed.

finally is a block usually used to release all the
resources utilized inside the try block such as to free
resources like stream objects, to close sockets .The code
in finally block is guaranteed of execution
irrespective of occurrence of exception catched/uncatched.

finalize() is never run more than once on any object.
finalize method is called by the garbage collector on an
object when the garbage collector determines that there are
no more references to the object.

Is This Answer Correct ?    30 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Find the value of a specified element of the array arr[i] where 0 <= i <= n-1

1032


Can we assign null to double in java?

1076


What is try-with-resources in java?

1218


Difference between operator overloading and function overloading

1124


What is the use of static methods?

1093


How do you define a method?

1040


What is the synonym of string?

1136


I am a fresher and know core java, c languge, html, css etc if I am illegible for any job then send it on my email tatranakshay276@gmail.com

1739


What is the size of boolean variable?

1133


What is the purpose of abstract class?

1059


What is operator overloading. Is it is supported in java?

1088


Is break statement can be used as labels in java?

1013


Why are data types important?

1184


What is the difference between access specifiers and access modifiers in java?

1233


Make a data structure and implement an algorithm to print all the files in a directory. (The root directory can have sub-directories too.)

1379