- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在许多情况下,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/
我是一名优秀的程序员,十分优秀!