在类内部定义结构的副作用
vb.net 新手问题
在类中定义结构(将其命名为 X)并在该类中创建 X 类型的属性有什么副作用?
A newbie vb.net question
What is the side effects of defining a structure inside a class (name it X), and create a property inside that class of the type X?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有副作用。
唯一的效果是该结构位于类的范围内,也就是说,如果您想从类外部使用该范围,则必须将其声明为
Public
并且在使用时需要将名称显式限定为OuterClassName.InnerStructureName
。值得注意的是(与 Java 不同),该结构与其所包含的类的任何实例无关。因此它不能只访问其周围类的实例成员。
There are no side-effects.
The only effect is that the structure is within the scope of the class, that is, if you want to use the scope from outside the class it has to be declared as
Public
and you nee to qualify the name explicitly asOuterClassName.InnerStructureName
when using it.Notably (and unlike in Java), the structure is not related to any instance of the class it’s contained in. So it cannot just access its surrounding class’s instance members.