How are integers cast to bytes in Java?(Java中的整数如何转换为字节?)
问题描述
我知道 Java 不允许无符号类型,所以我想知道它是如何将整数转换为字节的.假设我有一个值为 255 的整数 a 并将整数转换为一个字节.该值是否以字节 11111111 表示?换句话说,该值是更多地被视为一个有符号的 8 位整数,还是直接复制整数的最后 8 位?
I know Java doesn't allow unsigned types, so I was wondering how it casts an integer to a byte. Say I have an integer a with a value of 255 and I cast the integer to a byte. Is the value represented in the byte 11111111? In other words, is the value treated more as a signed 8 bit integer, or does it just directly copy the last 8 bits of the integer?
推荐答案
这叫做 缩小基元转换.根据规范:
有符号整数到整数类型的窄化转换T 只丢弃除n 个最低位之外的所有位,其中n 是用于表示类型 T 的位数.除了可能丢失有关数值大小的信息外,这还可能导致结果值的符号与输入值的符号不同.
A narrowing conversion of a signed integer to an integral type T simply discards all but the n lowest order bits, where n is the number of bits used to represent type T. In addition to a possible loss of information about the magnitude of the numeric value, this may cause the sign of the resulting value to differ from the sign of the input value.
所以这是您列出的第二个选项(直接复制最后 8 位).
So it's the second option you listed (directly copying the last 8 bits).
我不确定你是否知道有符号整数值是如何表示的,所以为了安全起见,我会指出字节值 1111 1111 在 二的补码 系统(Java 使用).
I am unsure from your question whether or not you are aware of how signed integral values are represented, so just to be safe I'll point out that the byte value 1111 1111 is equal to -1 in the two's complement system (which Java uses).
这篇关于Java中的整数如何转换为字节?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java中的整数如何转换为字节?
基础教程推荐
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01