如何解决 Delphi XE 中大型 Enum 类型的 RTTI 大小问题?
当我尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您正在使用枚举来列出城市???这是新的。
使用查找数据结构比使用枚举更好。
编辑:例如,您可以使用 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 withTCity
people can get a better understanding about what your problem is.具有 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.
按照 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.
无需讨论枚举中的 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.