C# 枚举、结构和类
谁能告诉我 C# 中枚举、结构和类之间的主要区别吗?我通常只使用此类代码,但从未真正看到需要使用其他类?
Could anyone just enlighten me on the main differences in C# between enumerations, structs and classes? I usually just use classes for this type of code but never really seen the need to use the others?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MSDN 是一个很好的参考:类,枚举,结构。
MSDN is a great reference: Class, Enum, Struct.
参考:
C# 中的对象和类简介 - 简介
对象和类简介C# 中的类 - 世界上的类和对象
结构类似于类,但有一些差异。
参考结构
枚举本质上是唯一的类型,允许您将符号名称分配给整数值。
Refering to :
Introduction to Objects and Classes in C# - Introduction
Introduction to Objects and Classes in C# - World's Classes and Objects
A Struct is similiar to class with several differences.
Refering to Structs
Enumerations are essentially unique types that allow you to assign symbolic names to integral values.