|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.lang.Number
The abstract class Number
is the superclass of
classes Byte
, Double
, Float
,
Integer
, Long
, and Short
.
Subclasses of Number
must provide methods to convert
the represented numeric value to byte
, double
,
float
, int
, long
, and
short
.
Byte
,
Double
,
Float
,
Integer
,
Long
,
Short
Constructor Summary | |
Number()
|
Method Summary | |
byte |
byteValue()
Returns the value of the specified number as a byte . |
abstract double |
doubleValue()
Returns the value of the specified number as a double . |
abstract float |
floatValue()
Returns the value of the specified number as a float . |
abstract int |
intValue()
Returns the value of the specified number as an int . |
abstract long |
longValue()
Returns the value of the specified number as a long . |
short |
shortValue()
Returns the value of the specified number as a short . |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, toString |
Constructor Detail |
public Number()
Method Detail |
public byte byteValue()
byte
.
This may involve rounding or truncation.
byte
.public abstract double doubleValue()
double
.
This may involve rounding.
double
.public abstract float floatValue()
float
.
This may involve rounding.
float
.public abstract int intValue()
int
.
This may involve rounding.
int
.public abstract long longValue()
long
.
This may involve rounding.
long
.public short shortValue()
short
.
This may involve rounding or truncation.
short
.
|
MIT ACM/IEEE Programming Competition |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |