Java中的双字节值()方法与示例
Java.lang.Double.byteValue()是Java中的一个内置方法,它将这个Double 的值作为一个字节返回(通过转换为一个字节)。基本上它用于缩小 Double 类型到字节值的原始转换。
句法:
public byte byteValue()
参数:该函数不接受任何参数。
返回值:此方法返回此对象表示的双精度值转换为byte类型。
例子:
Input : 12
Output : 12
Input : 1023
Output : -1
下面的程序说明了Java.lang.Double.byteValue()函数的使用:
方案一:
// Program to illustrate the Double.byteValue() method
import java.lang.*;
public class GFG {
public static void main(String[] args)
{
Double value = 1023d;
// Returns the value of Double as a byte
byte byteValue = value.byteValue();
System.out.println("Byte Value of num = " + byteValue);
// Another example
value = 12d;
byteValue = value.byteValue();
System.out.println("Byte Value of num = " + byteValue);
}
}
输出:
Byte Value of num = -1
Byte Value of num = 12
程序 2:演示负数的字节值。
// Java code to illustrate java.lang.Double.byteValue() method
import java.lang.*;
public class GFG {
public static void main(String[] args)
{
Double value = -1023d;
// Returns the value of Double as a byte
byte byteValue = value.byteValue();
System.out.println("Byte Value of num = " + byteValue);
// Another example
value = -12d;
byteValue = value.byteValue();
System.out.println("Byte Value of num = " + byteValue);
}
}
输出:
Byte Value of num = 1
Byte Value of num = -12
程序 3:在参数中传递十进制值时。
// Program to illustrate java.lang.Double.byteValue() method
import java.lang.*;
public class GFG {
public static void main(String[] args)
{
Double value = 11.24;
// Returns the value of Double as a byte
byte byteValue = value.byteValue();
System.out.println("Byte Value of num = " + byteValue);
// Another example
value = 6.0;
byteValue = value.byteValue();
System.out.println("Byte Value of num = " + byteValue);
}
}
输出:
Byte Value of num = 11
Byte Value of num = 6
程序 4:当一个字符串值作为参数传递时。
// Code to illustrate Double.byteValue()
import java.lang.*;
public class GFG {
public static void main(String[] args)
{
Double value = "45";
// Returns the value of Double as a byte
byte byteValue = value.byteValue();
System.out.println("Byte Value of num = " + byteValue);
}
}
编译错误:
prog.java:9: error: incompatible types: String cannot be converted to Double
Double value = "45";
^
1 error
参考:https: Java/lang/Double.html#byteValue–