typeof(System.Enum).IsClass == false

发布于 2024-08-09 05:24:15 字数 484 浏览 5 评论 0原文

发现:

typeof(System.Enum).IsClass == false

System.Enum 也有 .IsValueType == false 变得很奇怪,但 Reflector 表明它实际上只是一个抽象类

System.Enum 是一种类似于 System.ValueType 的引用类型,将枚举值转换为 System.Enum 引用或从 System.Enum 引用转换枚举值会导致装箱/拆箱。这里没有什么惊喜。

但是 Type 类不说出 System.Enum 本质的真相的原因是什么? System.Enum 类型的反射行为没有任何异常之处,使其看起来不像引用类型。

Founded that:

typeof(System.Enum).IsClass == false

It's become strange that System.Enum has also .IsValueType == false, but Reflector shows that it is really just an abstract class.

System.Enum is a reference type like a System.ValueType and casting enumeration values to/from System.Enum reference caused boxing/unboxing. No surprises here.

But what is a reason for Type class not to tell truth about System.Enum nature?
There is no anything extraordinary with the System.Enum type's reflection behavior to make it looks like not a reference type.

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

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

发布评论

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

评论(2

淡莣 2024-08-16 05:24:15

这是 .Net 1.1 和 2.0 的问题。我还没有在 3.0 中

从 MSDN 用户 David Bernstein

System.Enum 类型的 IsClass 属性返回“false”,即使“System.Enum”继承自“System.ValueType”且“typeof(System.ValueType).IsClass”返回“true”(如预期) 。同时,typeof(System.Enum).IsValueType 按预期返回“false”。这种观察到的行为似乎与上面规定的明确文档相矛盾:
“对于表示 Enum 和 ValueType 的 Type 实例,此属性返回 true。”我发现框架 1.1 和 2.0 都是这种情况。

It's an issue with .Net 1.1 and 2.0. I haven't checked it in 3.0

From MSDN User David Bernstein

The IsClass property of the System.Enum type returns "false", even though "System.Enum" inherits from "System.ValueType" and "typeof(System.ValueType).IsClass" return "true" (as expected). At the same time, typeof(System.Enum).IsValueType returns "false" as expected. This observed behavior seems to contradict the explicit documentation above which stipulates:
"This property returns true for Type instances representing Enum and ValueType." I found this to be the case in both frameworks 1.1 and 2.0.

吻风 2024-08-16 05:24:15

我最近碰巧在 CLR4 下重新审视这个问题,你猜怎么着,它现在已经修复了。以下定义:

public struct SomeValueType{}

public enum SomeEnum
{
    FirstElement
}

使用此程序

Console.WriteLine( typeof( Enum ).IsClass );
Console.WriteLine( typeof( SomeEnum ).IsClass );

Console.WriteLine( typeof( ValueType).IsClass );
Console.WriteLine( typeof( SomeValueType).IsClass );

会产生以下结果:

CLR2: False, False, True, False 
CLR4: True, False, True, False

I happened to recently revisit this problem under CLR4 and guess what, it is fixed now. The following definitions:

public struct SomeValueType{}

public enum SomeEnum
{
    FirstElement
}

with this program

Console.WriteLine( typeof( Enum ).IsClass );
Console.WriteLine( typeof( SomeEnum ).IsClass );

Console.WriteLine( typeof( ValueType).IsClass );
Console.WriteLine( typeof( SomeValueType).IsClass );

Yields the following results:

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