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...


how exactly garbage collection take place?

Answers were Sorted based on User's Feedback



how exactly garbage collection take place? ..

Answer / niraj talukdar

Garbage Collection is an automated process in Java unlike C
and C++. It executes to wipe out those objects which no
longer are used in a program or stay idle for a very long
time. This to free memory space alloted to these
objects.However, it is not guaranteed that all the idle
objects wil be destroyed every time garbage collection
process gets executed.A user can also manually call the
garbage collection to take place by executing System.gc()
method.

Is This Answer Correct ?    3 Yes 0 No

how exactly garbage collection take place? ..

Answer / vijayakumar chinnasamy

Variable/object
1. is eligible for garbage collection when no object refers
to it.
2. Is eligible when its reference is set to null i.e
objName=null.
3. referred by method variables or local variables are
eligible for garbage collection when they go out of scope.

Is This Answer Correct ?    1 Yes 0 No

how exactly garbage collection take place? ..

Answer / vinay

Another way to call garbage collector :-
Runtime rt = Runtime.getRuntime();
rt.gc();

Is This Answer Correct ?    0 Yes 0 No

how exactly garbage collection take place? ..

Answer / devil

As in Java its happen automatically, but if you want to do
this force fully you can do this by the use of
keyword "finalize".

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More Core Java Interview Questions

Is final static java?

0 Answers  


Is java platform independent?

0 Answers  


What is the catch or declare rule for method declarations?

1 Answers  


What is the difference between static and non-static variables in java programming?

0 Answers  


What was java originally called?

0 Answers  


What is static and a non-static inner class?

3 Answers  


What are the different http methods?

0 Answers  


What is indexof?

0 Answers  


What is Collection interface?

1 Answers   Zensar,


What is JFC?

0 Answers  


What are computer functions?

0 Answers  


Is null a keyword in java?

0 Answers  


Categories