Literal Syntax For byte[] arrays using Hex notation..?(使用十六进制表示法的 byte[] 数组的文字语法..?)
问题描述
编译器似乎对此没问题(仅限一位十六进制值):
The compiler seems to be ok with this (single digit hex values only):
byte[] rawbytes={0xa, 0x2, 0xf};
但不是这个:
byte[] rawbytes={0xa, 0x2, 0xff};
我收到发现可能的精度损失:int required : byte"错误?
I get a "Possible Loss of Precision found : int required : byte" error?
我做错了什么 - 还是个位数的十六进制数字是一种特殊情况?
What am I doing wrong - or are single digit hex numbers a special case ?
Java 1.5.x.
Java 1.5.x.
推荐答案
正如另一个回答已经说过的那样,byte 是 Java 中的有符号类型.范围从 -128 到 127(含).所以 0xff 等于 -0x01.如果添加手动转换,则可以使用 0xff 而不是 -0x01:
As the other answered already said, byte is a signed type in Java. The range is from -128 to 127 inclusive. So 0xff is equal to -0x01. You can use 0xff instead of -0x01 if you add a manual cast:
byte[] rawbytes={0xa, 0x2, (byte) 0xff};
这篇关于使用十六进制表示法的 byte[] 数组的文字语法..?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用十六进制表示法的 byte[] 数组的文字语法..?
基础教程推荐
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 降序排序:Java Map 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01