gpt4 book ai didi

c# - java中public final static的c#等价物是什么

转载 作者:IT老高 更新时间:2023-10-28 20:36:22 26 4
gpt4 key购买 nike

在Java中我可以写:

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

在 C# 中是否有任何等价物?

最佳答案

我能想到的 Java final 字段最接近的东西(不完全相同,final has other meanings 也是)是 readonly :

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

如果您有原始类型(字符串、整数、 boolean 值),您可能希望使用 const 代替。

public const string MAGIC_STRING = "Foo";

关于c# - java中public final static的c#等价物是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1181753/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com