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