Double类toHexString()方法
- toHexString() 方法可在
java.lang
包。 - toHexString() 方法用于获取给定参数 [value] 的双浮点类型的十六进制字符串表示形式。
- toHexString() 方法是一个静态方法,它也可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们也不会收到错误。
- toHexString() 方法从 double 转换为 Hexadecimal 字符串时不会抛出异常。
用法:
public static String toHexString(double value);
参数:
double value
– 表示要转换的双精度值。
返回值:
这个方法的返回类型是string
,它返回表示双精度值的给定参数的十六进制字符串。
例:
// Java program to demonstrate the example
// of toHexString(double value) method of Double class
public class ToHexStringOfDoubleClass {
public static void main(String[] args) {
// Variables initialization
double d1 = 10.0;
double d2 = 20.0;
double d3 = 30.0;
double d4 = Double.MAX_VALUE;
double d5 = Double.MIN_VALUE;
// Double instance creation
Double value = new Double(d1);
// It represents hexadecimal string of the given
// double type d2 argument
String s = value.toHexString(d2);
// Display Hexadecimal String Representation
System.out.println("value.toHexString(d2):" + s);
// It represents hexadecimal string of the given
// double type d3 argument
s = value.toHexString(d3);
// Display Hexadecimal String Representation
System.out.println("value.toHexString(d3):" + s);
// It represents hexadecimal string of the given
// double type d4 argument
s = value.toHexString(d4);
// Display Hexadecimal String Representation
System.out.println("value.toHexString(d4):" + s);
// It represents hexadecimal string of the given
// double type d5 argument
s = value.toHexString(d5);
// Display Hexadecimal String Representation
System.out.println("value.toHexString(d5):" + s);
}
}
输出
value.toHexString(d2):0x1.4p4 value.toHexString(d3):0x1.ep4 value.toHexString(d4):0x1.fffffffffffffp1023 value.toHexString(d5):0x0.0000000000001p-1022
相关用法
- Java Double toString()用法及代码示例
- Java Double hashCode()用法及代码示例
- Java Double min()用法及代码示例
- Java Double compare()用法及代码示例
- Java Double equals()用法及代码示例
- Java Double doubleToLongBits()用法及代码示例
- Java Double parseDouble()用法及代码示例
- Java Double floatVlaue()用法及代码示例
- Java Double longValue()用法及代码示例
- Java Double byteValue()用法及代码示例
- Java Double isFinite()用法及代码示例
- Java Double doubleValue()用法及代码示例
- Java Double max()用法及代码示例
- Java Double intValue()用法及代码示例
- Java Double valueOf()用法及代码示例
- Java Double isInfinite()用法及代码示例
- Java Double doubleToRawLongBits()用法及代码示例
- Java Double compareTo()用法及代码示例
- Java Double longBitsToDouble()用法及代码示例
- Java Double isNaN()用法及代码示例
注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Double class toHexString() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。