當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Double toHexString()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Double class toHexString() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。