Este método toma el Número como parámetro y devuelve un tipo primitivo basado en el método que se invoca. A continuación se muestra la lista de métodos disponibles:
byte byteValue()
short shortValue()
int intValue()
long longValue()
float floatValue()
double doubleValue()
Parameters - No se requieren parámetros.
Return Value - El valor devuelto es el tipo primitivo devuelto según la función de valor que se llama.
Ejemplo
A continuación se muestra un ejemplo del uso de los valores del método.
class Example {
static void main(String[] args) {
Integer x = 5;
// Converting the number to double primitive type
println(x.doubleValue());
// Converting the number to byte primitive type
println(x.byteValue());
// Converting the number to float primitive type
println(x.floatValue());
// Converting the number to long primitive type
println(x.longValue());
// Converting the number to short primitive type
println(x.shortValue());
// Converting the number to int primitive type
println(x.intValue());
}
}
Cuando ejecutamos el programa anterior, obtendremos el siguiente resultado:
5.0
5
5.0
5
5
5