String sb = new String("JAVA");
WeakReference<String> wrf = new WeakReference<String>(sb);
sb = null;
System.err.println(wrf.get());

Runtime.getRuntime().gc();
System.gc();
System.runFinalization();
System.err.println(wrf.get());

results matching ""

    No results matching ""