Floating-point constants consist of an integer part, a point (.), and a fractional part. The integer and the fractional parts represent sequences of decimal numbers.
浮動小数点の定数は、整数部分、点(.)、少数部分 から成り立ちます。 整数部分と少数部分は10進数の連続した数値で表されます。
Examples:
例:
1 2 3 4 | double a = 12.111; double b = -956.1007; double c = 0.0001; double d = 16; |
Its internal representation is a double-precision number of 8 bytes. Floating-point constants can assume values from -1.7 * e-308 to 1.7 * e308. If a constant exceeds this range, the result is undefined.
これらの内部表現は倍精度数の8バイトです。 浮動小数点の定数は -1.7 * e-308 から 1.7 * e308 まで値を想定することができます。 もし定数がこの限界を超えるなら、結果は不確定です。