十六进制

在数字前面加0x,代表十六进制

比如十进制的123,等于十六进制的0x7B

java中不支持直接写二进制常量,可以用十六进制来表示

可以是用Long和Integer的方法,查看二进制和十六进制的表示:

1
2
3
4
5
int a =25;
System.out.println(Integer.toBinaryString(a)); //二进制
System.out.println(Integer.toHexString(a)); //十六进制
System.out.println(Long.toBinaryString(a)); //二进制
System.out.println(Long.toHexString(a)); //十六进制
  • Copyright: Copyright is owned by the author. For commercial reprints, please contact the author for authorization. For non-commercial reprints, please indicate the source.
  • Copyrights © 2021 Silver Shaded
  • Visitors: | Views:

请我喝杯咖啡吧~

支付宝
微信