enum SingletonExample { INSTANCE; public static SingletonExample getInstance() { return INSTANCE; } }
使用枚举创建单例的方式,返回这样一个没有方法、字段的对象,什么情况下会使用这种方法呢?