使用枚举类的未定义符号
这可能是一个微不足道的问题,但我无法克服枚举类数据的问题:
enum class enumTest
{
VALUE0 = 0, VALUE1 = 1, VALUE2 = 2
};
void __fastcall TForm1::Button1Click (TObject* Sender)
{
int a = VALUE1;
}
我得到:错误:未定义符号:'VALUE1'
将枚举类枚举更改为:
enum //class enumTest
编译器正常工作。
不幸的是我不能这样做,因为它与许多其他声明一样被定义到 TLB/OCX 包含文件中。 不同供应商的不同类型的 OCX 都会发生这种情况。
This is probably a trivial question, but I am not able to overcome a problem with enum class data:
enum class enumTest
{
VALUE0 = 0, VALUE1 = 1, VALUE2 = 2
};
void __fastcall TForm1::Button1Click (TObject* Sender)
{
int a = VALUE1;
}
I get: Error: Undefined symbol: 'VALUE1'
Changing enum class enum into:
enum //class enumTest
the compiler works normally.
Unfortunately I cannot do it because it is defined into the TLB/OCX include file, as many other declarations.
This happens with different types of OCX of different vendors.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
枚举类
称为范围枚举。您需要在枚举范围内使用其枚举器。例如,An
enum class
is called a scoped enumeration. You need to use its enumerators in the scope of the enumeration. For example,