Blogs tagged garbage collector
-
Soft reference PhantomReference Recently I have some recruitment interview on the topic Weak reference and I think it is necessary for me to refresh my knowledge on this topic. When I write small program to verify my assumption, I meet with some... Read More »1Comment6Likes -
There is a method finalized defined on Object: In order to test this method, I wrote the following test code: package basic; public class finalizeTest { private String name; public void finalize(){ System.out.println("finalize called: "... Read More »0Comments0Likes