在类内部定义结构的副作用

发布于 2024-11-13 08:14:34 字数 65 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

江湖正好 2024-11-20 08:14:34

没有副作用。

唯一的效果是该结构位于类的范围内,也就是说,如果您想从类外部使用该范围,则必须将其声明为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 as OuterClassName.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文