具有受保护构造函数的单例类
类被设计为使用受保护的构造函数作为 SingleTon 类。 它被运送给客户。现在需要提交一个补丁,以便可以将此受保护的构造函数设为私有。
是否可以?
Class was designed with Protected Constructor as a SingleTon Class.
It is shipped to Customer. Now need to submit a patch such that this Protected constructor can be made as a Private.
is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我根据您的用户名猜测您的语言是 java...
单例必须有一个私有构造函数才能安全 - 否则不能保证它是单例!
你应该将其设为私有。如果您的客户对您的单例进行了子类化并使用了受保护的构造函数,那就太糟糕了。您不应该仅仅为了为有毒的遗留代码提供支持而破坏您的应用程序设计。
I am guessing by your user name that your language is java...
A singleton must have a private constructor to be safe - otherwise it's not guaranteed to be a singleton!
You should just make it private. If your customer has subclassed your singleton and used the protected constructor, too bad. You shouldn't break your application design just to provide support for poisoned legacy code.