Double.MinNormal Field

Definition

A constant holding the smallest positive normal value of type double, 2<sup>-1022</sup>.

[Android.Runtime.Register("MIN_NORMAL")]
public const double MinNormal = 2.2250738585072014E-308;
[<Android.Runtime.Register("MIN_NORMAL")>]
val mutable MinNormal : double

Field Value

Value = 2.2250738585072014E-308
Attributes

Remarks

A constant holding the smallest positive normal value of type double, 2<sup>-1022</sup>. It is equal to the hexadecimal floating-point literal 0x1.0p-1022 and also equal to Double.longBitsToDouble(0x0010000000000000L).

Added in 1.6.

Java documentation for java.lang.Double.MIN_NORMAL.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to