📌  相关文章
📜  带有示例的Java lang.Long.toBinaryString() 方法

📅  最后修改于: 2022-05-13 01:55:02.523000             🧑  作者: Mango

带有示例的Java lang.Long.toBinaryString() 方法


Java.lang.Long.toBinaryString() 方法将 long 参数的字符串表示形式返回为以 2 为底的无符号整数。它接受 Long 数据类型的参数并返回相应的二进制字符串。

句法:

public static String toBinaryString(long num)

Parameters : The function accepts a single mandatory parameter: 
num - This parameter specifies the number to be converted to binary string. 
It is of Long data-type.

返回值:此函数返回由二进制参数表示的无符号 Long 值的字符串表示形式(以 2 为基数)。

例子:

Input : 10 
Output : 1010 

Input : 9
Output : 1001 

程序1:下面的程序演示了函数的工作。

// Java program to demonstrate
// of java.lang.Long.toBinaryString() method
import java.lang.Math;
  
class Gfg1 {
  
    // driver code
    public static void main(String args[])
    {
  
        long l = 10;
        // returns the string representation of the unsigned long value
        // represented by the argument in binary (base 2)
        System.out.println("Binary is " + Long.toBinaryString(l));
  
        l = 20987752;
        System.out.println("Binary is " + Long.toBinaryString(l));
    }
}

输出:

Binary is 1010
Binary is 1010000000011111101101000

程序2 :下面的程序演示了传递负数时的工作函数。

// Java program to demonstrate overflow
// of java.lang.Long.toBinaryString() method
import java.lang.Math;
  
class Gfg1 {
  
    // driver code
    public static void main(String args[])
    {
        // conversion of a negative number to Binary
        long l = -13;
        System.out.println("Binary is " + Long.toBinaryString(l));
    }
}

输出:

Binary is 1111111111111111111111111111111111111111111111111111111111110011

错误和异常:每当十进制数或字符串作为参数传递时,它都会返回一条错误消息,上面写着“不兼容的类型”。

程序3:下面的程序演示了传递一个字符串数字时的工作函数。

// Java program to demonstrate overflow
// of java.lang.Long.toBinaryString() method
import java.lang.Math;
  
class Gfg1 {
  
    // driver code
    public static void main(String args[])
    {
  
        // error message thrown when a string is passed
        System.out.println("Binary is " + Long.toBinaryString("10"));
    }
}

输出:

prog.java:12: error: incompatible types: String cannot be converted to long
    System.out.println("Binary is " + Long.toBinaryString("10"));

程序4:下面的程序演示了传递小数时的工作函数。

// Java program to demonstrate overflow
// of java.lang.Long.toBinaryString() method
import java.lang.Math;
  
class Gfg1 {
  
    // driver code
    public static void main(String args[])
    {
  
        // error message thrown when a decimal is passed
        System.out.println("Binary is " + Long.toBinaryString(10.25));
    }
}

输出:

prog.java:12: error: incompatible types: possible lossy conversion from double to long
    System.out.println("Binary is " + Long.toBinaryString(10.25));