Método Byte intValue() en Java con ejemplos

El método intValue() de la clase Byte es un método integrado en Java que se utiliza para devolver el valor de este objeto Byte como int.

Sintaxis

ByteObject.intValue()

Valor de retorno: Devuelve el valor de ByteObject como int .

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

Ejemplo 1:

// Java code to demonstrate
// Byte intValue() 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);
  
        // intValue of the Byte Object
        int output = b.intValue();
  
        // printing the output
        System.out.println("Integer value of "
                           + a + " is : " + output);
    }
}
Producción:

Integer value of 17 is : 17

Ejemplo 2:

// Java code to demonstrate
// Byte intValue() 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);
  
        // intValue of the Byte Object
        int output = b.intValue();
  
        // printing the output
        System.out.println("Integer value of "
                           + b + " is : " + output);
    }
}
Producción:

Integer 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

Deja una respuesta

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