java中publicfinalstatic在c#中的等价物是什么

发布于 2024-07-29 13:52:53 字数 120 浏览 5 评论 0原文

在 Java 中我可以写:

public final static MyClass foo = new MyClass("foo");

C# 中有等效的吗?

In Java I can write:

public final static MyClass foo = new MyClass("foo");

Is there any equivalent in C#?

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

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

发布评论

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

评论(2

一梦等七年七年为一梦 2024-08-05 13:52:54

最接近的东西(不完全相同, final 有其他对于 Java final 字段,我能想到的是 readonly

public static readonly MyClass field = new MyClass("foo");

如果您有原始类型(string、int、boolean),您可能需要使用 const 代替。

public const string MAGIC_STRING = "Foo";

The closest thing (not exactly the same, final has other meanings too) for Java final fields I can think of is readonly:

public static readonly MyClass field = new MyClass("foo");

If you have a primitive type (string, int, boolean), you may want to use const instead.

public const string MAGIC_STRING = "Foo";
追我者格杀勿论 2024-08-05 13:52:54
sealed class finalClass
{
   ...
}
sealed class finalClass
{
   ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文