當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java 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.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Integer.toHexString() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。