“值类空间是平坦的”是什么意思?
我现在正在读《Scala 编程》一书。第11章中提到:
<块引用>请注意,值类空间是平坦的。
但没有人解释这意味着什么。这重要吗?为什么?而如何使用和如何检查值类空间确实是平坦的。看起来,应该告诉我们 ref 类空间不是平坦的,但是不是,并且没有其他词再说一遍。所以我想知道“空间是平坦的”是什么意思,以及为什么价值类空间是平坦的。
I am now reading the book Programming in Scala. In chapter 11, it mentioned:
Note that the value class space is flat.
But no one explain what it means. Is it important? Why? And how to use and how to check value class space is really flat. It seems that ,it should told that ref class space is not flat, but no, and no other words say it again. So I want to know what the meaning of "space is flat", and why value class space is flat.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
扁平类层次结构是具有大量同级类和很少或没有子类的层次结构(在本例中没有子类)。
A flat class hierarchy is one with lots of sibling classes and few or no subclasses (none in this particular case).