我们如何在Java中编写浮点数的二进制,八进制和十六进制文字?无论是科学的还是正常的。
R = [5, 2, 3, 6, 9]
上述计划结果为144.0
class First
{
public static void main(String[] args)
{
double b = 0x12p3;
System.out.println(b);
}
}
以上程序结果为4835.0
class First
{
public static void main(String[] args)
{
double b = 0x12e3;
System.out.println(b);
}
}
以上程序结果为4835.0
class First
{
public static void main(String[] args)
{
double b = 0x12e3;
System.out.println(b);
}
}
上述程序结果为12000
请解释上述输出。
答案 0 :(得分:1)
第一个例子是HexadecimalFloatingPointLiteral,(16 + 2)* 8 = 144。
第二个和第三个例子实际上是一个分配给双变量的HexIntegerLiteral,1 * 16 * 16 * 16 + 2 * 16 * 16 + 14 * 16 + 3 = 4835.注意'e'只是十六进制数字为14。
最后一个例子是DecimalFloatingPointLiteral,12 * 1000。
有关所有详细信息,请参阅JLS:https://docs.oracle.com/javase/specs/jls/se8/html/jls-3.html#jls-3.10.2