为什么 Java 在数字提升期间将字节和短操作数转换为整数
在 数字推广流程?难道不能直接对这些较小的数据类型执行大部分操作吗?
What are the reasons behind the extension of small datatypes (e.g. byte) to int during the Numeric Promotion process? Wouldn't it be possible to perform most of the operations directly on these smaller datatypes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
VM 是一个虚拟机,JIT 将其转换为本机代码,然后对其进行优化。所有寄存器都是 32 位或 64 位,“更短”的操作不一定更快。
The VM is a virtual machine, the JIT translates this to native code and optimises it then. All registers are either 32-bit or 64-bit and "shorter" operations are not necessarily and faster.
VM 不支持小于 4 个八位字节的整数,因此在 VM 中运行时,您将操作 4 个八位字节整数或 8 个八位字节长。 (它适用于数组、barray sarray 等,但不适用于单个值)。
The VM does not support integers smaller than 4 octets, so when running in the VM you are operating on 4 octet ints or 8 octet longs. (Well it does for arrays, barray sarray, etc, just not for single values).