VB6 将长整型转换为整数抛出溢出

发布于 2024-12-06 21:24:14 字数 221 浏览 1 评论 0原文

我正在尝试将 long 转换为整数。我相信 long 的值足够低,可以容纳在整数范围内。

我有代码:

'mapdc is a long
Debug.Print mapdc
Debug.Print CInt(mapdc)

第一行运行良好。它输出 1107367444。 然而,第二行导致发生溢出错误。

有什么想法吗? 谢谢!!!!

I am trying to convert a long to an integer. I believe the value of the long is low enough to fit in the range on an integer.

I have the code:

'mapdc is a long
Debug.Print mapdc
Debug.Print CInt(mapdc)

The first line runs fine. It outputs 1107367444.
The second line however causing an overflow error to happen.

Any ideas?
THANKS!!!!

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

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

发布评论

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

评论(3

简单 2024-12-13 21:24:14

VB6 Integer 数据类型是 16 位。您导致溢出:mapdc 的值大于 32,767,超出了整数变量支持的值范围。有关 VB6 数据类型的详细信息,请参阅此 MSDN 页面

A VB6 Integer data type is 16-bits. You are causing an overflow: The value of mapdc is greater than 32,767 which falls outside of the range of values supported by an Integer variable. For more information on VB6 data types see this MSDN page.

情丝乱 2024-12-13 21:24:14

VB6 整数类型的范围是 -32,768 到 32,767。显然,您的值超出了该范围并溢出。

数据类型 - VB 6 教程

MSDN 通过说 VB6 整数对应于Int16 的 .NET 类型具有相同的范围:

适用于 Visual Basic 6.0 用户的整数数据类型

The range of a VB6 Integer type is -32,768 to 32,767. Obviously, your value falls outside of that range and overflows.

Data Types - VB 6 tutorial

MSDN Confirms by saying that a VB6 Integer corresponds to the .NET type of Int16 which has the same range:

Integer Data Type for Visual Basic 6.0 Users

拿命拼未来 2024-12-13 21:24:14

VB6 中的 Int 为 16 位(范围从 -32,768 到 32,767)。 此链接提供了 VB6 之间的比较与 .Net 等效项

Int in VB6 is 16 bit (range from -32,768 to 32,767). This link provides a comparison between VB6 with the .Net equivalents

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