枚举类型的值

发布于 2024-12-11 19:07:05 字数 753 浏览 1 评论 0原文

我只是想知道为什么我会得到这个输出:

enum MyEnum
{
    a=1,
    b=2,
    c=3,
    d=3,
    f=d
}
Console.WriteLine(MyEnum.f.ToString());

OUTPUT
c


但是在 Mono 中
输出
f

那么为什么输出是c?不是吗?编译器如何选择c?如果我像这样更改代码:

enum MyEnum
{
    a=1,
    b=2,
    c=3,
    d=3, 
    k=3
}
Console.WriteLine(MyEnum.k.ToString());


输出
c
又来了!

另一个例子

enum MyEnum
{
    a=3,
    b=3,
    c=3,      
    d=3,
    f=d,   
}
MessageBox.Show(MyEnum.f.ToString());

输出
c

I'm just wondering why I get this output :

enum MyEnum
{
    a=1,
    b=2,
    c=3,
    d=3,
    f=d
}
Console.WriteLine(MyEnum.f.ToString());

OUTPUT
c


But in Mono
OUTPUT

f

So why is the output c? not d? How does the compiler choose c? If I change the code like this:

enum MyEnum
{
    a=1,
    b=2,
    c=3,
    d=3, 
    k=3
}
Console.WriteLine(MyEnum.k.ToString());

OUTPUT

c

again!

Another example:

enum MyEnum
{
    a=3,
    b=3,
    c=3,      
    d=3,
    f=d,   
}
MessageBox.Show(MyEnum.f.ToString());

OUTPUT


c

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

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

发布评论

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

评论(2

酒浓于脸红 2024-12-18 19:07:05

来自 MSDN:

如果多个枚举成员具有相同的基础值并且您
尝试检索枚举的字符串表示形式
成员的名称基于其基础值,您的代码不应使
关于该方法将返回哪个名称的任何假设。

请参阅:http://msdn.microsoft.com/en-us/library /a0h36syw.aspx#Y300

From MSDN:

If multiple enumeration members have the same underlying value and you
attempt to retrieve the string representation of an enumeration
member's name based on its underlying value, your code should not make
any assumptions about which name the method will return.

See: http://msdn.microsoft.com/en-us/library/a0h36syw.aspx#Y300

苏大泽ㄣ 2024-12-18 19:07:05

输出是 c,因为 ToString 解析枚举的索引并打印出该索引处的表示形式。在第一个示例中,d=3,第三个索引枚举值是 c。类似地,当查找 k 的第三个索引时,它会在 k 之前到达 c,因此这又是输出。

The output is c because ToString resolves the index of the enum and prints out the representation at that index. In the first example, d=3, and the third indexed enum value is c. Similarly, when looking for the third index for k, it arrives at c before k, so that is again the output.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文