文字语法对于使用16进制字节[]数组..? [英] Literal Syntax For byte[] arrays using Hex notation..?

查看:146
本文介绍了文字语法对于使用16进制字节[]数组..?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

编译器似乎是确定与此(单位十六进制值仅):

The compiler seems to be ok with this (single digit hex values only):

byte[] rawbytes={0xa, 0x2, 0xf};

但不是这样的:

byte[] rawbytes={0xa, 0x2, 0xff};

我得到一个precision可能损失发现:整数必需的:字节?误差

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.

推荐答案

至于其他的回答已经说了,字节是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};

这篇关于文字语法对于使用16进制字节[]数组..?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆