它与核心java枚举有关
java中枚举类的单例实例是什么?
what is singleton instances of the enumeration class in java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
java中枚举类的单例实例是什么?
what is singleton instances of the enumeration class in java?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
也许您正在谈论使用枚举来实现单例模式?
自从 Java 中添加了枚举以来,这是实现单例的最佳(最短、最正确)方法。
Perhaps you're talking aobut using an enum to implement the singleton pattern?
Since enums were added to Java, this is the best (shortest, most correct) way to implement singletons.