在 C# 中将一组成员标记为私有/公共

发布于 2024-07-13 10:57:20 字数 127 浏览 8 评论 0原文

在 C++ 类声明中,您可以将一组成员标记为私有或公共,例如,

private:
  int x;
  double y;

在 C# 中似乎无法执行此操作。 我错了吗?

in a c++ class declaration, you can label a group of members as private or public, e.g.

private:
  int x;
  double y;

seems like there's no way to do this in c#. am I wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

回眸一笑 2024-07-20 10:57:20

不,您不能在 C# 中执行此操作。

最好的情况下,你可以对成员使用默认的可见性,即私有的,而不是使用私有的,但对于公共,你必须为所有成员指明它。

No, you can't not do this in C#.

At best, you can use the default visibility for members, which is private, and not use private, but for public, you have to indicate it for all members.

时光匆匆的小流年 2024-07-20 10:57:20

你是对的。 不过,如果您完全关闭可见性关键字,则成员默认为私有。

You're correct. Although, if you leave visibility keyword off altogether, a member defaults to private.

九歌凝 2024-07-20 10:57:20

不,你没有错。 如果您不编写任何修饰符,它将被假定为私有。

No you're not wrong. If you don't write any modifiers it will be assumed as private.

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