Skip to Content

Blogs tagged garbage collector

2 results
  • Author's profile photo Jerry Wang
    Jerry Wang posted on July 2, 2016
    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 »
  • Author's profile photo Jerry Wang
    Jerry Wang posted on June 27, 2016
    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 »