Class TFloat
java.lang.Object
|
+--TObject
|
+--TFloat
- public class TFloat
- extends TObject
La classe TFloat est la classe englobante du type primaire float.
- Since:
- Release 1.0
Field Summary |
static float |
MAX_VALUE
La plus grande valeur que peut prendre un float. |
static float |
MIN_VALUE
La plus petite valeur que peut prendre un float. |
Method Summary |
static float |
parseFloat(TString string)
Cette méthode convertie une chaîne de caractère en nombre à virgule
flotante de type float. |
static TString |
toString(float value)
Cette méthode retourne un nombre à virgule flotante de type float converti en
chaîne de caractères. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
MAX_VALUE
public static final float MAX_VALUE
- La plus grande valeur que peut prendre un float.
MIN_VALUE
public static final float MIN_VALUE
- La plus petite valeur que peut prendre un float.
TFloat
public TFloat()
toString
public static TString toString(float value)
- Cette méthode retourne un nombre à virgule flotante de type float converti en
chaîne de caractères.
- Parameters:
value
- Le nombre à convertir.
- Returns:
- string - La chaîne de caractère.
- Since:
- Release 1.0
parseFloat
public static float parseFloat(TString string)
- Cette méthode convertie une chaîne de caractère en nombre à virgule
flotante de type float.
- Returns:
- value - L'entier de type long.
- Since:
- Release 1.0