java.lang.Integer.toBinaryString() 方法将整数参数的字符串表示形式返回为基数中的无符号整数2.
语法
public static String toBinaryString(int i)
参数
i | 指定一个整数要转换为字符串。 |
返回值
返回参数以二进制表示的无符号整数值的字符串表示形式(基数 2)。
异常
无。
示例:
在下面的示例中,java.lang.Integer.toBinaryString() 方法将整数参数的字符串表示形式返回为基数为 2 的无符号整数。
import java.lang.*;
public class MyClass {
public static void main(String[] args) {
//创建int值
int x = 25;
int y = 31;
int z = 111;
//创建并打印字符串表示形式
//二进制参数。
System.out.println("x in binary system is: " + Integer.toBinaryString(x));
System.out.println("y in binary system is: " + Integer.toBinaryString(y));
System.out.println("z in binary system is: " + Integer.toBinaryString(z));
}
}
上述代码的输出将是:
x in binary system is: 11001
y in binary system is: 11111
z in binary system is: 1101111