什么是纯变量?
我惊讶地发现这段代码可以编译:
pure string Foo = SomePureFunction(123);
pure
仅在 在线文档。
什么是pure
变量,它们与immutable
和const
变量有何不同?
I was surprised to find that this code compiles:
pure string Foo = SomePureFunction(123);
pure
is only mentioned in the context of functions in the online documentation.
What are pure
variables, and how are they different from immutable
and const
ones?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,该属性没有任何作用。这是DMD中的一个已知问题,还有很多其他类似的情况,其中属性没有被拒绝,但也没有任何效果。
The attribute just has no effect in this case. It's a known issue in DMD, there are quite a number other similar cases, where attributes are not rejected, but don't have any effect as well.