SingleInstance原来可以这么写
public class SingleInstance { | |
private static class InstanceHolder { | |
public static final SingleInstance instance = new SingleInstance(); | |
} | |
public static SingleInstance getInstance() { | |
return InstanceHolder.instance; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment