当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Float toHexString()用法及代码示例


Float类toHexString()方法

  • toHexString() 方法可在java.lang包。
  • toHexString() 方法用于表示给定参数 [value] 的单精度浮点类型的十六进制字符串。
  • toHexString() 方法是一个静态方法,它也可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们也不会收到错误。
  • toHexString() 方法在从浮点数转换为十六进制字符串时不会抛出异常。

用法:

    public static String toHexString (float value);

参数:

  • float value– 表示要转换的浮点值。

返回值:

这个方法的返回类型是String,它返回表示浮点值的给定参数的十六进制字符串。

例:

// Java program to demonstrate the example 
// of toHexString(float value) method of Float class

public class ToHexStringOfFloatClass {
    public static void main(String[] args) {
        // Variables initialization
        float f1 = 10.0f;
        float f2 = 20.0f;
        float f3 = 30.0f;
        float f4 = Float.MAX_VALUE;
        float f5 = Float.MIN_VALUE;

        // Float instance creation
        Float value = new Float(f1);

        // It represents hexadecimal string of the given
        // float type f2 argument
        String s = value.toHexString(f2);

        // Display Hexadecimal String Representation
        System.out.println("value.toHexString(f2):" + s);

        // It represents hexadecimal string of the given
        // float type f3 argument
        s = value.toHexString(f3);

        // Display Hexadecimal String Representation
        System.out.println("value.toHexString(f3):" + s);

        // It represents hexadecimal string of the given
        // float type f4 argument
        s = value.toHexString(f4);

        // Display Hexadecimal String Representation
        System.out.println("value.toHexString(f4):" + s);

        // It represents hexadecimal string of the given
        // float type f5 argument
        s = value.toHexString(f5);

        // Display Hexadecimal String Representation
        System.out.println("value.toHexString(f5):" + s);
    }
}

输出

value.toHexString(f2):0x1.4p4
value.toHexString(f3):0x1.ep4
value.toHexString(f4):0x1.fffffep127
value.toHexString(f5):0x0.000002p-126


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Float class toHexString() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。