El método byteValue de la clase Byte es un método integrado en Java que se utiliza para devolver el valor de este objeto Byte como byte.
Sintaxis
ByteObject.byteValue()
Valor devuelto: Devuelve el valor de ByteObject como byte.
A continuación se muestra la implementación del método byteValue() en Java:
Ejemplo 1:
// Java code to demonstrate // Byte byteValue() method class GFG { public static void main(String[] args) { // byte value byte a = 17; // wrapping the byte value // in the wrapper class Byte Byte b = new Byte(a); // byteValue of the Byte Object byte output = b.byteValue(); // printing the output System.out.println("Byte value of " + a + " is : " + output); } }
Producción:
Byte value of 17 is : 17
Ejemplo 2:
// Java code to demonstrate // Byte byteValue() method class GFG { public static void main(String[] args) { String value = "17"; // wrapping the byte value // in the wrapper class Byte Byte b = new Byte(value); // byteValue of the Byte Object byte output = b.byteValue(); // printing the output System.out.println("Byte value of " + b + " is : " + output); } }
Producción:
Byte value of 17 is : 17
Publicación traducida automáticamente
Artículo escrito por kundankumarjha y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA