Java 中的长整数类型十六进制文本
类型为长整数的十六进制文本表示为 −
long hexLong = 0XABL;
对于十六进制数字,0x 或 0X 要放在数字的开头。
注意 − 在十六进制数字中,数字 10 至 15 由 a 到 f (A 到 F) 表示。
示例
public class Demo { public static void main(String []args) { long hexLong = 0XABL; System.out.println("Hexadecimal literal of type long: "+hexLong); } }
输出
Hexadecimal literal of type long:171
广告