public class Test{
public static void main(String[] args) {
byte bytes = -42;
int result = bytes&0xff;
System.out.println("无符号数: \t"+result);
System.out.println("2进制bit位: \t"+Integer.toBinaryString(result));
}
}
什么叫无符号数????不是很清楚你说的什么?
你的意思是绝对值么?
byte a=-11;
Math.abs(a);
System.out.println(Math.abs(a));
有具体的代码吗?