如何解决 Delphi XE 中大型 Enum 类型的 RTTI 大小问题?

发布于 2024-11-24 18:33:13 字数 302 浏览 0 评论 0原文

当我尝试在 Delphi XE 中编译具有 5000 多个值的 Enum 类型的单元时,出现此错误

[DCC 错误] uCities.pas(5834): E2575 RTTI for 'TCity' is太大;使用 $RTTI 缩小范围或缩小字体大小

我该如何解决这个问题?

之类的事情

{$WEAKLINKRTTI ON}
{$RTTI EXPLICIT METHODS([]) PROPERTIES([]) FIELDS([])}

没有帮助。

提前致谢

I get this error when I try to compile a unit with a Enum type with 5000+ values in Delphi XE

[DCC Error] uCities.pas(5834): E2575 RTTI for 'TCity' is too large; reduce scope with $RTTI or reduce type size

How can I solve this?

Things like

{$WEAKLINKRTTI ON}
{$RTTI EXPLICIT METHODS([]) PROPERTIES([]) FIELDS([])}

didn't help.

thanks in advance

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

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

发布评论

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

评论(4

洋洋洒洒 2024-12-01 18:33:13

您正在使用枚举来列出城市???这是新的。

使用查找数据结构比使用枚举更好。

编辑:例如,您可以使用 TClientDataset,或者如果您执行任何类型的查找(从 TCity 值获取城市的字符串名称),则可以使用 TDictionary (来自 Generics.Collections 单元)。

并帮助这里的人来帮助您: TCidade 对于那些看不懂葡萄牙语的人来说没有任何意义,但使用 TCity 人们可以获得更好地了解您的问题是什么。

You're using an enum to list cities ??? That's new.

It's better using an lookup data structure than an enum.

EDIT: you can use, for example, an TClientDataset or you can use an TDictionary (from Generics.Collections unit) if you do any kind of lookup (get the string name of the city from an TCity value).

And help people here to help you: TCidade will not make any sense to those that can't read Portuguese but with TCity people can get a better understanding about what your problem is.

百思不得你姐 2024-12-01 18:33:13

具有 5000 多个值的 Enum 类型不是您手写的 Enum。现在有 5k 个值的 Enum 明天将有 10k 个值。

您应该修改生成枚举的代码以生成简单常量。使用 Integer(或 Smallint)作为实际类型。那应该可以永久修复它。

An Enum type with 5000+ values is not an Enum you wrote by hand. And an Enum that now has 5k values will have 10k tomorrow.

You should modify the code that generated the enum to generate simple constants instead. Use Integer (or Smallint) for the actual type. That should fix it for good.

少年亿悲伤 2024-12-01 18:33:13

按照 Mason Wheeler 的说法,重构该类以减小类型大小。把它分成几个更小的。

资料来源:Embarcadero 论坛

编辑:仔细阅读后,这可能会很棘手,因为您'正在处理一个枚举。一种选择可能是将枚举值转换为整数常量(Const 关键字)并更改过程以使用整数。

Per Mason Wheeler, refactor the class to reduce the type size. Break it up into several smaller ones.

Source: Embarcadero forums

Edit: On closer reading, this may be tricky since you're dealing with an enum. One option might be to convert the enum values into integer constants (Const keyword) and change procedures to use integers.

蓝海 2024-12-01 18:33:13

无需讨论枚举中的 5k 条目是否合理 - 快速解决方法是将 =1 添加到您的第一个枚举项。

TCharsetChar=
(
csSPACE=1,
csEXCLAMATION_MARK,
csQUOTATION_MARK,
...

有时,为了节省时间或提高性能,打破规则是值得的。所以你在这里。

Without going into discussion if 5k entries in an enum is justified - quick fix is to add =1 to your first enum item.

TCharsetChar=
(
csSPACE=1,
csEXCLAMATION_MARK,
csQUOTATION_MARK,
...

Sometimes it is worthwhile to break the rules - for time savings, or performance. So here you are.

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