Método corto longValue() en Java con ejemplo

El método java.lang.Short.longValue() de la clase Short es un método incorporado en Java que se usa para devolver el valor del objeto Short como un objeto largo.

Sintaxis

ShortObject.longValue()

Valor devuelto: Devuelve el valor de ShortObject tan largo .

A continuación se muestra la implementación del método longValue() en Java:

Ejemplo 1:

// Java code to demonstrate
// Short longValue() method
  
class GFG {
    public static void main(String[] args)
    {
  
        // Short value
        Short a = 17;
  
        // wrapping the Short value
        // in the wrapper class Short
        Short b = new Short(a);
  
        // longValue of the Short 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
// Short longValue() method
  
class GFG {
    public static void main(String[] args)
    {
  
        String value = "17";
  
        // wrapping the Short value
        // in the wrapper class Short
        Short b = new Short(value);
  
        // longValue of the Short 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 Sruti Rai 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 *