String sb = new String("JAVA");
SoftReference<String> wrf = new SoftReference<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 ""