java中publicfinalstatic在c#中的等价物是什么
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最接近的东西(不完全相同,
final
有其他对于 Javafinal
字段,我能想到的是readonly
:如果您有原始类型(string、int、boolean),您可能需要使用
const
代替。The closest thing (not exactly the same,
final
has other meanings too) for Javafinal
fields I can think of isreadonly
:If you have a primitive type (string, int, boolean), you may want to use
const
instead.