LAST UPDATED: AUGUST 26, 2020
Java Double byteValue() Method
Java byteValue()
method belongs to the Double
class of the java.lang
package and overrides the byteValue()
method of the Number
class. This method returns the byte equivalent of the Double object after a narrowing primitive conversion(Conversion of higher data type into lower data type).
In short, this method is used to convert a Double object value into a byte value.
Syntax:
public byte byteValue()
Parameter:
No parameter is passed in this method.
Returns:
The numerical equivalent of the object of a byte type is created after conversion.
Example 1:
Here, using the byteValue()
function, the double values are converted into its numerical byte equivalent.
import java.lang.Double;
public class StudyTonight
{
public static void main(String[] args)
{
//converting Double object into byte
Double x = 34.689;
byte i=x.byteValue();
System.out.println(" Equivalent byte value is " +i);
Double y = 19.67;
byte d = y.byteValue();
System.out.println(" Equivalent byte value is " +d);
}
}
Equivalent byte value is 34
Equivalent byte value is 19
Example 2:
Here is a user-defined example where anyone using this code can put a value of his choice and get the equivalent byte value.
import java.util.Scanner;
public class StudyTonight
{
public static void main(String[] args)
{
try
{
System.out.print("Enter the value to be converted : ");
Scanner sc = new Scanner(System.in);
double i = sc.nextDouble();
Double n = i ;
byte val = n.byteValue();
System.out.println("Byte Value is: " + val);
}
catch(Exception e)
{
System.out.println("not a valid double");
}
}
}
Enter the value to be converted : 89.55
Byte Value is: 89
********************************************
Enter the value to be converted : -70.66
Byte Value is: -70
********************************************
Enter the value to be converted : 0x66
not a valid double
Live Example:
Here, you can test the live code example. You can execute the example for different values, even can edit and write your examples to test the Java code.