gpt4 book ai didi

c++ - 将枚举器分配给具有相同值的枚举器的枚举类型

转载 作者:行者123 更新时间:2023-11-30 01:56:10 25 4
gpt4 key购买 nike

给定这个枚举和赋值:

enum Points {point2d = 2, point2w, point3d = 3, point3w};
Points pt3d = point3d;

在此赋值后的断点处,调试器报告 pt3d 的值为 point2w。为什么不是指定的 point3d?

最佳答案

enum 只是一种为枚举设置奇特的编译时类型安全名称的方法。发生的情况是您的每个枚举值都被分配了一个整数值:

enum Points
{
// Explicitly map point2d to value 2.
point2d = 2,

// Let point2w get an automatic mapping - will be previous + 1 = 3.
point2w,

// Explicitly map pint3d to value 3.
point3d = 3,

// Let point3w get an automatic mapping - will be previous + 1 = 4.
point3w
}

因此对于运行时,语句 Points pt3d = point3dPoints pt3d = 3 相同。显示时,调试器只需将第一个枚举值再次映射到 3,即 point2w

关于c++ - 将枚举器分配给具有相同值的枚举器的枚举类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20056375/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com