Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
java中枚举类的单例实例是什么?
也许您说的是使用枚举来实现单例模式?
public enum Singleton { INSTANCE; public void singletonMethod() { ... } }
由于枚举被添加到 Java 中,这是实现单例的最佳(最短、最正确)方法。