当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Integer toHexString()用法及代码示例


Integer类toHexString()方法

  • toHexString() 方法可在java.lang包。
  • toHexString() 方法用于将给定参数 [value] 的整数类型的十六进制字符串表示为基数为 16 的无符号整数。
  • toHexString() 方法是一个静态方法,它也可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们也不会收到错误。
  • toHexString() 方法从整数转换为十六进制字符串时不抛出异常。

用法:

    public static String toHexString (int value);

参数:

  • int value– 表示要转换的整数值。

返回值:

这个方法的返回类型是int,它返回表示无符号整数值的给定参数的十六进制字符串。

例:

// Java program to demonstrate the example 
// of toHexString (int value) method of Integer class

public class ToHexStringOfIntegerClass {
    public static void main(String[] args) {
        // Variables initialization
        int i1 = 10;
        int i2 = 20;
        int i3 = 30;
        int i4 = Integer.MAX_VALUE;
        int i5 = Integer.MIN_VALUE;

        // Integer instance creation
        Integer value = new Integer(i1);

        // It represents hexadecimal string of the given
        // integer type i2 argument
        String s = value.toHexString(i2);

        // Display Hexadecimal String Representation
        System.out.println("value.toHexString(i2):" + s);

        // It represents hexadecimal string of the given
        // integer type i3 argument
        s = value.toHexString(i3);

        // Display Hexadecimal String Representation
        System.out.println("value.toHexString(i3):" + s);

        // It represents hexadecimal string of the given
        // integer type i4 argument
        s = value.toHexString(i4);

        // Display Hexadecimal String Representation
        System.out.println("value.toHexString(i4):" + s);

        // It represents hexadecimal string of the given
        // integer type i5 argument
        s = value.toHexString(i5);

        // Display Hexadecimal String Representation
        System.out.println("value.toHexString(i5):" + s);
    }
}

输出

value.toHexString(i2):14
value.toHexString(i3):1e
value.toHexString(i4):7fffffff
value.toHexString(i5):80000000


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Integer class toHexString() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。