Double.doubleToLongBits(double value) has the following syntax.
public static long doubleToLongBits(double value)
In the following code shows how to use Double.doubleToLongBits(double value) method.
public class Main { public static void main(String[] args) { System.out.println(Double.doubleToLongBits(1.2)); } }
The output: