java.lang.Number.byteValue() es un método incorporado en Java que devuelve el valor del número especificado como un byte. Esto puede implicar redondeo o truncamiento.
Sintaxis:
public byte byteValue()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: este método devuelve el valor numérico representado por este objeto después de la conversión a tipo byte.
El siguiente programa ilustra el uso del método Number.byteValue():
Programa 1:
// Java program to illustrate the // Number.byteValue() method public class gfg { public static void main(String[] args) { // Get a number as integer Integer x = new Integer(12345786); // Print bytevalue() System.out.println(x.byteValue()); // Get a number as float Float y = new Float(9145876f); // Print bytevalue() System.out.println(y.byteValue()); } }
Producción:
-70 20
Programa 2:
// Java program to illustrate the // Number.byteValue() method public class gfg { public static void main(String[] args) { // Get a number as integer Integer x = new Integer(123); // Print bytevalue() System.out.println(x.byteValue()); // Get a number as float Float y = new Float(76f); // Print bytevalue() System.out.println(y.byteValue()); } }
Producción:
123 76
Publicación traducida automáticamente
Artículo escrito por Twinkl Bajaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA