Wednesday, February 4, 2026
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
32479 POSTS0 COMMENTS
Milvus
125 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11980 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12066 POSTS0 COMMENTS
Shaida Kate Naidoo
6987 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6936 POSTS0 COMMENTS
Umr Jansen
6919 POSTS0 COMMENTS