首页 > 文档 > byte()字节转换
2017
07-20

byte()字节转换

Name

byte()字节转换

   

Examples

char c = ‘E’;

byte b = byte(c);

println(c + ” : ” + b); // Prints “E : 69”

 

int i = 130;

b = byte(i);

println(i + ” : ” + b); // Prints “130 : -126”

Description

Converts any value of a primitive data type (booleanbytecharcolordoublefloatint, or long) to its byte representation. A byte can only be a whole number between -128 and 127, so when a value outside of this range is converted, it wraps around to the corresponding byte representation. (For example, byte(128) evaluates to -128.)

When an array of values is passed in, then a byte array of the same length is returned.



最后编辑:
作者:卡萨布兰卡
这个作者貌似有点懒,什么都没有留下。

留下一个回复

你的email不会被公开。