qvoid
11/18/2017 - 3:56 AM

create single instance

Java 单例的一种写法

  public class GradeResultManager{
    public static GradeResultManager sInstance;
    public static synchronized GradeResultManager getInstance() {
        if (sInstance == null) {
            sInstance = new GradeResultManager();
        }
        return sInstance;
    }
  }