- java.lang.Object
-
- java.lang.Number
-
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- AtomicInteger, AtomicLong, BigDecimal, BigInteger, Byte, Double, Float, Integer, Long, Short
public abstract class Number extends Object implements Serializable
The abstract classNumber
is the superclass of classesBigDecimal
,BigInteger
,Byte
,Double
,Float
,Integer
,Long
, andShort
.Subclasses of
Number
must provide methods to convert the represented numeric value tobyte
,double
,float
,int
,long
, andshort
.
-
-
Constructor Summary
Constructors Constructor and Description Number()
-
Method Summary
Methods Modifier and Type Method and Description byte
byteValue()
Returns the value of the specified number as abyte
.abstract double
doubleValue()
Returns the value of the specified number as adouble
.abstract float
floatValue()
Returns the value of the specified number as afloat
.abstract int
intValue()
Returns the value of the specified number as anint
.abstract long
longValue()
Returns the value of the specified number as along
.short
shortValue()
Returns the value of the specified number as ashort
.
-
-
-
Method Detail
-
intValue
public abstract int intValue()
Returns the value of the specified number as anint
. This may involve rounding or truncation.- Returns:
- the numeric value represented by this object after conversion
to type
int
.
-
longValue
public abstract long longValue()
Returns the value of the specified number as along
. This may involve rounding or truncation.- Returns:
- the numeric value represented by this object after conversion
to type
long
.
-
floatValue
public abstract float floatValue()
Returns the value of the specified number as afloat
. This may involve rounding.- Returns:
- the numeric value represented by this object after conversion
to type
float
.
-
doubleValue
public abstract double doubleValue()
Returns the value of the specified number as adouble
. This may involve rounding.- Returns:
- the numeric value represented by this object after conversion
to type
double
.
-
byteValue
public byte byteValue()
Returns the value of the specified number as abyte
. This may involve rounding or truncation.- Returns:
- the numeric value represented by this object after conversion
to type
byte
. - Since:
- JDK1.1
-
shortValue
public short shortValue()
Returns the value of the specified number as ashort
. This may involve rounding or truncation.- Returns:
- the numeric value represented by this object after conversion
to type
short
. - Since:
- JDK1.1
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 16:31:29 Cette version de la page est en cache (à la date du 05/11/2024 16:31:29) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 15/07/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/lang/Number.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.