Java.lang.Integer 类

java.lang.Integer.toUnsignedString() 方法将参数的字符串表示形式返回为无符号十进制值。参数将转换为无符号十进制表示形式,并以字符串形式返回,就像将参数和基数 10 作为参数提供给 toUnsignedString(int, int) 方法一样。

语法

public static String toUnsignedString(int i)

参数

i 指定要转换为无符号字符串的整数。

返回值

返回参数的无符号字符串表示形式。

异常

无。

示例:

在下面的示例中,java.lang.Integer.toUnsignedString() 方法以无符号十进制形式返回参数的字符串表示形式

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {

    //创建int值
    int x = 25;
    int y = -25;

    //创建int值的toUnsignedString值
    String p = Integer.toUnsignedString(x);
    String q = Integer.toUnsignedString(y);

    //打印int值的UnsignedString值
    System.out.println("toUnsignedString value of x is: " + p); 
    System.out.println("toUnsignedString value of y is: " + q);  
  }
}

上述代码的输出将是:

toUnsignedString value of x is: 25
toUnsignedString value of y is: 4294967271