gpt4 book ai didi

c# - 如果 A 和 B 是枚举类型,为什么我可以将 A[] 转换为 B[]?

转载 作者:行者123 更新时间:2023-11-30 16:54:07 24 4
gpt4 key购买 nike

在许多情况下,enum 使代码更具可读性和易于理解。但是我不明白什么时候可以像下面这样使用这一行:

public enum A
{
apple,orange,egg
}
public enum B
{
apple,orange,egg
}
public static void main()
{
A[] aa = (A[])(Array) new B[100];
}

任何人都可以给我任何源代码示例,我可以在哪里使用这种类型的枚举数组。

最佳答案

The CLR has more generous casting rules than C# has.显然,如果底层类型对于两种类型具有相同的大小,则 CLR 允许在枚举数组之间进行转换。在我链接的问题中,案例是 (sbyte[])(object)(byte[]) 这同样令人惊讶。

This is in the ECMA spec Partition I I.8.7 Assignment compatibility.

underlying types – in the CTS enumerations are alternate names for existing types (§I.8.5.2), termed their underlying type. Except for signature matching (§I.8.5.2)

III.4.3 castclass 说

If the actual type (not the verifier tracked type) of obj is verifier-assignable-to the type typeTok the cast succeeds

castclass 是 C# 编译器用来执行此转换的指令。

事实上,枚举成员在您的示例中是相同的,但这与问题无关。另请注意,没有创建新对象。它实际上只是对象引用的转换。

关于c# - 如果 A 和 B 是枚举类型,为什么我可以将 A[] 转换为 B[]?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30821526/

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