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


Java Long.toHexString()用法及代碼示例



Java.lang.Long.toHexString() 是 Java 中的 內置 函數,它返回 long 參數的字符串表示,作為基數為 16 的無符號整數。該函數接受單個參數作為 Long 數據類型的參數。

用法:

public static String toHexString(long num)

參數: The function accepts a single mandatory parameter 
num -  This parameter specifies the number which is to be converted to Hexadecimal string. 

返回值:該函數將 long 參數的字符串表示形式返回為基數為 16 的無符號整數。

例子:

Input:11
Output:b

Input:12
Output:c

程序1:下麵的程序演示了函數的工作。




// Java program to demonstrate working
// of java.lang.Long.toHexString() method
import java.lang.Math;
  
class Gfg1 {
  
    // driver code
    public static void main(String args[])
    {
  
        long l = 11;
  
        // returns the string representation of the unsigned int value
        // represented by the argument in binary (base 2)
        System.out.println("Hex string is " + Long.toHexString(l));
    }
}

輸出:

Hex string is b

程序2:下麵的程序演示了函數的工作。


// Java program to demonstrate working
// of java.lang.Long.toHexString() method
import java.lang.Math;
  
class Gfg1 {
  
    // driver code
    public static void main(String args[])
    {
  
        long l = 234;
  
        // returns the string representation of the unsigned int value
        // represented by the argument in binary (base 2)
        System.out.println("Hex string is " + Long.toHexString(l));
    }
}

輸出:

 Hex string is ea



相關用法


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