Float.MinNormal Field

Definition

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

[Android.Runtime.Register("MIN_NORMAL")]
public const float MinNormal = 1.17549435E-38;
[<Android.Runtime.Register("MIN_NORMAL")>]
val mutable MinNormal : single

Field Value

Value = 1.17549435E-38
Attributes

Remarks

A constant holding the smallest positive normal value of type float, 2<sup>-126</sup>. It is equal to the hexadecimal floating-point literal 0x1.0p-126f and also equal to Float.intBitsToFloat(0x00800000).

Added in 1.6.

Java documentation for java.lang.Float.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