Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.lang.ref.SoftReference;

public class Main {
    public static void main(String[] argv) throws Exception {
        SoftReference<String> sr = new SoftReference<String>("object");

        Object o = sr.get();
        if (o != null) {
            System.out.println(o);
        } else {
            System.out.println("collected or has been reclaimed");
        }
    }
}