El método byteValue() de la clase Integer del paquete java.lang convierte el Integer dado en un byte después de una conversión primitiva de estrechamiento y lo devuelve (valor del objeto entero como un byte). Además, recuerde que este método anula el método byteValue() de la clase Number .
La vista del paquete es la siguiente:
--> java.lang Package -->Integer Class --> byteValue() Method
Sintaxis:
public byte byteValue()
Tipo de devolución: devuelve el valor numérico representado por este objeto después de la conversión a tipo de byte.
Nota: Es compatible con Java 1.5 y posteriores.
Ejemplo 1:
Java
// Java program to Illustrate byteValue() Method // Of Integer Class // Importing required class import java.lang.Integer; // Main Class class GFG { // Main driver method public static void main(String args[]) { // Creating an Integer object and // passing custom integer input Integer a = new Integer(34); // Converting integer number to byte value // using byteValue() method byte b = a.byteValue(); // Printing the corresponding byte value System.out.println(b); } }
Producción:
34
Ejemplo 2:
Java
// Java Program to Illustrate byteValue() Method // of Integer Class // Importing required classes import java.lang.*; import java.util.*; // Main Class class GFG { // Main driver method public static void main(String[] args) { // Creating a Byte object Byte b = new Byte("01"); // Converting Byte to byte primitive // using byteValue() method Byte bp = b.byteValue(); // Display statement System.out.println("Byte object : " + b); // Primitive byte value of custom Byte passed above String str = "Primitive byte value of Byte object : " + bp; // Printing byte primitive value System.out.println(str); } }
Producción:
Byte object : 1 Primitive byte value of Byte object : 1
Publicación traducida automáticamente
Artículo escrito por Niraj_Pandey y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA