Java Long toHexString()方法

java.lang.Long.toHexString() 方法返回下列字符作为十六进制数字long参数以基数为16的无符号整数的字符串表示形式:0123456789abcdef

1 语法

public static String toHexString(long i)

2 参数

i :这是一个long 转换为字符串。

3 返回值

此方法返回由十六进制的参数(以16为基数)为代表的无符号长整型值的字符串表示形式。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Long toHexString()方法
 */
import java.lang.*;

public class LongDemo {

   public static void main(String[] args) {

     long l = 220;
     System.out.println("Number = " + l);
    
     /* returns the string representation of the unsigned long value
     represented by the argument in hexadecimal (base 16) */
     System.out.println("Hex = " + Long.toHexString(l));
   }  
}

输出结果为:

Number = 220
Hex = dc

 

热门文章

优秀文章