posts - 34,  comments - 73,  trackbacks - 4
09 2008 档案
枚举
摘要: 每个枚举都继承至System.Enum,System.Enum继承至System.ValueType,System.ValueType又继承至System.Object枚举是值类型,枚举不能有方法,属性和事件。枚举其实就是定义一组常量字段的结构体。编译器对待枚举类似如下代码struct Color : System.Enum{ public const Color Red = (Color) 0;...阅读全文
posted @ 2008-09-19 01:01 qy 阅读(96) | 评论 (0) 编辑