Java中十六进制转换 Integer.toHexString()
生活随笔
收集整理的這篇文章主要介紹了
Java中十六进制转换 Integer.toHexString()
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
?
前些天發(fā)現(xiàn)了一個(gè)巨牛的人工智能學(xué)習(xí)網(wǎng)站,通俗易懂,風(fēng)趣幽默,忍不住分享一下給大家。點(diǎn)擊跳轉(zhuǎn)到教程。
用例: Long.toHexString(number) ?其中 ?number ?是一個(gè)long類型參數(shù)。
?
描述:
java.lang.Integer.toHexString()?方法返回為無符號整數(shù)基數(shù)為16的整數(shù)參數(shù)的字符串表示形式。以下字符作為十六進(jìn)制數(shù)字:0123456789ABCDEF。
聲明:
以下是java.lang.Integer.toHexString()方法的聲明
public static String toHexString(int i) static String toHexString(int i)?
?
參數(shù)
-
i?-- 這是一個(gè)整數(shù)被轉(zhuǎn)換為一個(gè)字符串.
返回值 :
此方法返回的字符串表示的無符號整數(shù)參數(shù)所表示的值以十六進(jìn)制(基數(shù)為16).
實(shí)例:
下面的例子顯示使用的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 valuerepresented by the argument in hexadecimal (base 16) */System.out.println("Hex = " + Integer.toHexString(i));} }讓我們來編譯和運(yùn)行上面的程序,這將產(chǎn)生以下結(jié)果:
Number = 170 Hex = aa?
?
?
總結(jié)
以上是生活随笔為你收集整理的Java中十六进制转换 Integer.toHexString()的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Spring中的计时器StopWatch
- 下一篇: [导入]精典的一句