私有构造函数、子类化和密封
如果可以通过在基类中声明私有构造函数来防止子类化,为什么我们需要“sealed”关键字?是因为CLI可以更好的优化吗?或许。
谢谢。
If one can prevent subclassing by declaring private constructor in the base class, why do we need "sealed" keyword? Is it so because CLI can optimize it better? maybe.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为您可能希望拥有公共构造函数,但不允许任何人从您的类派生
Because you might want to have public constructors but not allow anyone to derive from your class
如果一个类被密封,则可以执行一些优化。即 clr 可以发出 .call 指令而不是 .callvirt
If a class is sealed some optimizations can be performed. i.e. the clr could emit .call instruction rather than a .callvirt