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


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


Integer类toBinaryString()方法

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

用法:

    public static String ToBinaryString(int value);

参数:

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

返回值:

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

例:

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

public class ToBinaryStringOfIntegerClass {
    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 binary string of the given
        // integer type i2 argument
        String s = value.toBinaryString(i2);

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

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

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

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

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

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

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

输出

value.toBinaryString(i2):10100
value.toBinaryString(i3):11110
value.toBinaryString(i4):1111111111111111111111111111111
value.toBinaryString(i5):10000000000000000000000000000000


相关用法


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