El método longValue() de la clase Byte es un método integrado en Java que se utiliza para devolver el valor de este objeto Byte siempre que sea.
Sintaxis
ByteObject.longValue()
Valor de retorno: Devuelve el valor de ByteObject siempre que sea .
A continuación se muestra la implementación del método longValue() en Java:
Ejemplo 1:
// Java code to demonstrate // Byte longValue() 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); // longValue of the Byte Object long output = b.longValue(); // printing the output System.out.println("Long value of " + b + " is : " + output); } }
Producción:
Long value of 17 is : 17
Ejemplo 2:
// Java code to demonstrate // Byte longValue() 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); // longValue of the Byte Object long output = b.longValue(); // printing the output System.out.println("Long value of " + b + " is : " + output); } }
Producción:
Long value of 17 is : 17