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


java.lang.Integer.toHexString() 方法返回一個整數引數的字串表示形式在基數為16的無符號整數,下面的字元作為十六進位制數位:0123456789ABCDEF。

宣告

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

public static String toHexString(int i)

引數

  • i -- 這是要轉換為字串的整數。

返回值

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

異常

  • NA

例子

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

package com.yiibai;

import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

     int i = 170;
     System.out.println("Number = " + i);
    
     /* returns the string representation of the unsigned integer value
     represented by the argument in hexadecimal (base 16) */
     System.out.println("Hex = " + Integer.toHexString(i));
   }  
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Number = 170
Hex = aa