C 中重复的枚举值合法吗?

发布于 2024-10-30 01:32:02 字数 244 浏览 1 评论 0原文

enum protocol {
    ascii_prot = 3, /* arbitrary value. */
    binary_prot,
    negotiating_prot = 4 /* Discovering the protocol */
};

binary_protnegotiating_prot 都等于 4

enum protocol {
    ascii_prot = 3, /* arbitrary value. */
    binary_prot,
    negotiating_prot = 4 /* Discovering the protocol */
};

Both binary_prot and negotiating_prot equals to 4?

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

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

发布评论

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

评论(2

阳光的暖冬 2024-11-06 01:32:02

是的。

Yes.

む无字情书 2024-11-06 01:32:02

是的; C 并不特别关注枚举值。为什么要这样做是另一个问题,除非有某种原因将发现数据包与数据包视为相同。 (当其他人设计协议并且您希望尽可能严格遵守他们的文档时,很可能会出现这种情况。)

Yes; C is not particular about enum values. Why you might do that is another question, unless there's some reason to treat the discovery packet the same as data packets. (Which there might well be when someone else designed the protocol and you want to stick as closely as possible to their documentation.)

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