Friday, November 21, 2025
HomeLanguagesJavaNumber.byteValue() Method in Java with Examples

Number.byteValue() Method in Java with Examples

The java.lang.Number.byteValue() is an inbuilt method in java that returns the value of the specified number as a byte. This may involve rounding or truncation.

Syntax:

public byte byteValue()

Parameters: The method does not take any parameter.

Return value: This method returns the numeric value represented by this object after conversion to type byte.

Below program illustrates the use of Number.byteValue() method:

Program 1:




// Java program to illustrate the
// Number.byteValue() method
public class gfg {
  
    public static void main(String[] args)
    {
  
        // Get a number as integer
        Integer x = new Integer(12345786);
  
        // Print bytevalue()
        System.out.println(x.byteValue());
  
        // Get a number as float
        Float y = new Float(9145876f);
  
        // Print bytevalue()
        System.out.println(y.byteValue());
    }
}


Output:

-70
20

Program 2:




// Java program to illustrate the
// Number.byteValue() method
public class gfg {
  
    public static void main(String[] args)
    {
  
        // Get a number as integer
        Integer x = new Integer(123);
  
        // Print  bytevalue()
        System.out.println(x.byteValue());
  
        // Get a number as float
        Float y = new Float(76f);
  
        // Print  bytevalue()
        System.out.println(y.byteValue());
    }
}


Output:

123
76
RELATED ARTICLES

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11996 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7166 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS