Método Byte longValue() en Java con ejemplos

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

Publicación traducida automáticamente

Artículo escrito por ShivamKD y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *