负子范围误差

发布于 2024-11-18 03:17:28 字数 216 浏览 2 评论 0原文

我想知道是否可以声明

Value1, Value2: Set of -2..-1;

我遇到了编译错误:[DCC Error] ShowUtils.pas(98): E2028 Sets最多可能有256个元素。

根据我的数学计算,这是 2 个元素 -2 和 -1 为什么编译器认为有超过 256 个?

使用德尔福2007

I was wondering if it's possible to declare

Value1, Value2: Set of -2..-1;

I'm getting a compile error: [DCC Error] ShowUtils.pas(98): E2028 Sets may have at most 256 elements.

By my maths that's 2 elements -2 and -1 why does the compiler think there's more than 256?

using Delphi 2007

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

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

发布评论

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

评论(1

雅心素梦 2024-11-25 03:17:28

出现此错误的原因是,集合边界的序数值必须在 0 到 255 之间。因此不能在集合中使用负数,此外,您可以查看有关编译器错误 E2028 集最多可以有 256 个元素 (Delphi)

This error appears because, the ordinal values of the bounds of the set must be between 0 and 255. so you cannot use negative numbers in a set, Additionally you can check the documentation about the compiler error E2028 Sets may have at most 256 elements (Delphi)

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