gpt4 book ai didi

c# - 为什么在创建 const 字符串变量时不能使用 String.Empty?

转载 作者:太空狗 更新时间:2023-10-30 00:23:27 25 4
gpt4 key购买 nike

我经常使用 String.Empty 作为占位符,相当于 ""。所以我的问题是,为什么 const 不像 String.Empty?它们的编译方式相同。

// Good
private const string example = "";

// Bad
private const string example = String.Empty;

String.Empty 中的内容使其无法与 const 一起使用。

最佳答案

String.Empty 不是常量,它只是readonly 字段。并且由于它是 readonly 字段(在编译时已知),因此不能将其分配给常量。

http://referencesource.microsoft.com/#mscorlib/system/string.cs,c9f70a27facb27cf

...
//We need to call the String constructor so that the compiler doesn't mark this as a literal.
//Marking this as a literal would mean that it doesn't show up as a field which we can access
//from native.
public static readonly String Empty;

关于c# - 为什么在创建 const 字符串变量时不能使用 String.Empty?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38858702/

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