java.lang.Long.toHexString()方法範例


java.lang.Long.toHexString() 方法返回下列字元作為十六進位制數位long引數以基數為16的無符號整數的字串表示形式:0123456789abcdef

宣告

以下是java.lang.Long.toHexString()方法的宣告

public static String toHexString(long i)

引數

  • i -- 這是一個long 轉換為字串。

返回值

此方法返回由十六進位制的引數(以16為基數)為代表的無符號長整型值的字串表示形式。

異常

  • NA

例子

下面的例子顯示java.lang.Long.toHexString()方法的使用。

package com.yiibai;

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