对于具有前导数字的枚举值是否有命名约定?
我的 ac# 枚举如下所示:
public enum EthernetLinkSpeed {
[Description("10BASE-T")]
_10BaseT,
[Description("100BASE-T")]
_100BaseT,
[Description("1000BASE-T")]
_1000BaseT,
[Description("Disconnected")]
Disconnected
}
我为每个值添加了一个前导下划线以使编译器满意。
像这样的枚举有标准的命名约定吗?我使用的下划线似乎不是最好的选择。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
我不知道有什么约定,但是怎么样
I know of no convention, but how about
我只是在这种情况下寻找更具描述性的东西。例如,既然你有一个“Disconnected”枚举值,我会使用类似的东西:
因为这些只是编译时的,所以只要你愿意,让它们长一点也没有什么坏处,即使让它们长只是意味着让它们具有足够的描述性通过编译器的命名规则。
I just look for something more descriptive in this case. For instance, since you have a "Disconnected" enum value, I would use something like:
Since these are compile-time only, there's no damage in having them as long you like, even if making them long just means making them descriptive enough to pass the compiler's naming rules.
不是直接答案,而是内置的
NetworkInterfaceType
枚举包括以下值:这对我来说有点难看,但我可能会考虑为您的枚举使用
Ethernet
前缀:Not a direct answer, but the built-in
NetworkInterfaceType
enum includes the following values:It's a bit ugly for my liking, but I might consider using an
Ethernet
prefix for your enum:我不确定是否有约定,但主观上这样的事情可能不那么“丑陋”:
I'm not sure if there is a convention, but something like this may be subjectively less 'ugly':
我们通常在它们前面加上“e”前缀。
我们处理很多视频分辨率,720p 等,所以我们使用 e720p。就您而言,我认为使用以太网、快速以太网和千兆以太网这些名称可能会更好。
We usually prefix them with 'e'
We deal with a lot of video resolutions, 720p etc, so we use e720p. In your case, I think using the names may be better, Ethernet, FastEthernet, and GigabitEthernet.
正如您所注意到的,名称很重要。因此,有时探索非显而易见的替代方案是件好事。
一个完全不同的替代方案:
As you've noticed, names are important. So, sometimes it's good to explore non-obvious alternatives.
A completely different alternative:
为所有相关的枚举添加唯一的前缀总是没有坏处的。如果不出意外的话,它有助于以后对源代码进行搜索/替换编辑。
It never hurts to add a unique prefix to all the related enums. If nothing else, it helps with search/replace editing of your source code down the road.