Java Float toHexString()方法
java.lang.Float.toHexString() 方法返回float参数f的十六进制字符串表示形式。可以看下面一些例子:
浮点值 | 十六进制字符串 |
---|---|
1.0 | 0x1.0p0 |
-1.0 | -0x1.0p0 |
2.0 | 0x1.0p1 |
3.0 | 0x1.8p1 |
0.5 | 0x1.0p-1 |
0.25 | 0x1.0p-2 |
Float.MAX_VALUE | 0x1.fffffep127 |
最低标准值 | 0x1.0p-126 |
次正规的最大值 | 0x0.fffffep-126 |
Float.MIN_VALUE | 0x0.000002p-126 |
1 语法
public static String toHexString(float f)
2 参数
f :这是要进行转换的float值。
3 返回值
此方法返回参数的十六进制字符串表示形式。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Float toHexString()方法
*/
import java.lang.*;
public class FloatDemo {
public static void main(String[] args) {
Float f = new Float("50.32");
/* returns a hexadecimal string representation of the
float argument */
String str = f.toHexString(1.0f);
System.out.println("Hex String = " + str);
str = f.toHexString(3.0f);
System.out.println("Hex String = " + str);
str = f.toHexString(0.25f);
System.out.println("Hex String = " + str);
str = f.toHexString(Float.MIN_VALUE);
System.out.println("Hex String = " + str);
}
}
输出结果为:
Hex String = 0x1.0p0
Hex String = 0x1.8p1
Hex String = 0x1.0p-2
Hex String = 0x0.000002p-126
热门文章
优秀文章