使用枚举类的未定义符号

发布于 2024-12-28 09:07:13 字数 392 浏览 1 评论 0原文

这可能是一个微不足道的问题,但我无法克服枚举类数据的问题:

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 技术交流群。

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

发布评论

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

评论(1

蛮可爱 2025-01-04 09:07:13

枚举类称为范围枚举。您需要在枚举范围内使用其枚举器。例如,

int a = enumTest::VALUE1;

An enum class is called a scoped enumeration. You need to use its enumerators in the scope of the enumeration. For example,

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