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