Scala 的密封抽象与抽象类
密封抽象
和抽象
Scala 类有什么区别?
What is the difference between sealed abstract
and abstract
Scala class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
密封抽象
和抽象
Scala 类有什么区别?
What is the difference between sealed abstract
and abstract
Scala class?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
不同之处在于密封类的所有子类(无论是否抽象)必须与密封类位于同一文件中。
The difference is that all subclasses of a sealed class (whether it's abstract or not) must be in the same file as the sealed class.
正如回答,所有直接继承密封类的子类(无论是否抽象)必须位于同一文件中。这样做的一个实际结果是,如果模式匹配不完整,编译器会发出警告。例如:
如果
Tree
是sealed
,那么编译器会发出警告,除非最后一行未被注释。As answered, all directly inheriting subclasses of a sealed class (abstract or not) must be in the same file. A practical consequence of this is that the compiler can warn if the pattern match is incomplete. For instance:
If the
Tree
issealed
, then the compiler warns unless that last line is uncommented.