类型成员和协方差
我猜想,“类型差异注释”(+
和 -
)不能应用于“类型成员”。为了向自己解释它,我考虑了以下 示例
abstract class Box {type T; val element: T}
现在,如果我想创建类 StringBox< /code> 我必须扩展
Box
:
class StringBox extends Box { type T = String; override val element = ""}
所以我可以说 Box
在 自然是协变的>T。换句话说,具有类型成员的类在这些类型中是协变的。
有道理吗?
您如何描述类型成员和类型差异之间的关系?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Box 的类型 T 是不变的,但这并不意味着没有什么可看的。
改变差异情况的是类型暴露的程度和完成的方式。抽象类型更加不透明。但你应该在 repl 中解决这些问题,这很有趣。
等等。
Box is invariant in its type T, but that doesn't mean there's nothing to see.
What alters the variance situation is the degree to which the type is exposed and the manner it is done. Abstract types are more opaque. But you should play with these issues in the repl, it's quite interesting.
And etc.