public abstract class Number extends Object
Number is the superclass of
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.
The specific semantics of the conversion from the numeric value of
a particular Number implementation to a given primitive
type is defined by the Number implementation in question.
For platform classes, the conversion is often analogous to a
narrowing primitive conversion or a widening primitive conversion
as defining in The Java™ Language Specification
for converting between primitive types. Therefore, conversions may
lose information about the overall magnitude of a numeric value, may
lose precision, and may even return a result of a different sign
than the input.
See the documentation of a given Number implementation for
conversion details.| Constructor and Description |
|---|
Number() |
| Modifier and Type | Method and Description |
|---|---|
byte |
byteValue()
Returns the value of the specified number as a
byte,
which may involve rounding or truncation. |
abstract double |
doubleValue()
Returns the value of the specified number as a
double,
which may involve rounding. |
abstract float |
floatValue()
Returns the value of the specified number as a
float,
which may involve rounding. |
abstract int |
intValue()
Returns the value of the specified number as an
int,
which may involve rounding or truncation. |
abstract long |
longValue()
Returns the value of the specified number as a
long,
which may involve rounding or truncation. |
short |
shortValue()
Returns the value of the specified number as a
short,
which may involve rounding or truncation. |
public byte byteValue()
byte,
which may involve rounding or truncation.byte.public abstract double doubleValue()
double,
which may involve rounding.double.public abstract float floatValue()
float,
which may involve rounding.float.public abstract int intValue()
int,
which may involve rounding or truncation.int.public abstract long longValue()
long,
which may involve rounding or truncation.long.public short shortValue()
short,
which may involve rounding or truncation.short.Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. Use of this specification is subject to license terms.