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.
 
Constructor Summary
TFloat()
           
 
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 TObject
clone, equals, finalize, TObject0, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

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.

Constructor Detail

TFloat

public TFloat()
Method Detail

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