我可以在 C# 中从 const char 初始化 const 字符串吗?
我正在尝试以某种方式执行以下操作:
const char EscapeChar = '\\';
const string EscapeString = EscapeChar.ToString(); // or ("" + EscapeChar)
这无法编译。 还有其他方法可以使其发挥作用吗?
I am trying to do the following in a way or another:
const char EscapeChar = '\\';
const string EscapeString = EscapeChar.ToString(); // or ("" + EscapeChar)
This does't compile. Is there another way to make it work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
来自 C# 语言规范(第 17.3 条和第 14.16 条):
和
实现您想要的效果的另一种方法是使用静态只读成员。 只读成员在运行时评估,而不是在编译时评估。 因此您可以使用 ToString() 方法。
注意:因为只读字段可以在类的声明处或构造函数中初始化,所以只读字段可以具有不同的值,具体取决于所使用的构造函数。
这是一篇关于const 和 readonly 成员之间的差异的好文章。
From the C# Language Specification (§ 17.3 and 14.16):
and
An other way to achieve what you want is to use a static readonly member. Readonly members are evaluated at runtime, not at compile time. Therefore you can use the ToString() method.
Note: Because a readonly field can be initialized either at the declaration or in the constructor of a class, readonly fields can have different values depending on the constructor used.
Here is a good article about the differences between const and readonly members.
我没有看到任何方法可以做到这一点,我同意这有点可惜 - 但你真的需要它是一个
const
而不是静态只读
? 后者将具有几乎相同的语义。I don't see any way of doing it, which I agree is a bit of a pity - but do you really need it to be a
const
instead ofstatic readonly
? The latter will have almost the same semantics.从 .net 6.0 开始,c# 版本 10 引入了常量插值字符串 (https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-10#constant-interpolated-strings)
所以来自.net 6.0 上您可以使用以下命令执行此操作:
Starting from .net 6.0, with c# version 10 constant interpolated strings were introduced (https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-10#constant-interpolated-strings)
So from .net 6.0 on you can do this using:
我能想到的唯一方法(都不理想)是:
或者只要您需要字符串版本,您就可以坚持使用 char 版本和 ToString() :)
The only ways I can think of (both not ideal) are:
Or you could just stick with the char version and ToString() it whenever you need the string version :)
C#.Net const 要求在编译时初始化其值。
这就是原因,您的代码无法编译。
您可以使用只读字段来分配运行时值。
但是,以下代码将起作用:
C#.Net const requires its value initialised at compile time.
That is the reason, your code is not compiling.
You can use readonly field to assign run time value.
However, following code will work: