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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。