Long.numberOfLeadingZeros(long i) has the following syntax.
public static int numberOfLeadingZeros(long i)
In the following code shows how to use Long.numberOfLeadingZeros(long i) method.
public class Main { public static void main(String[] args) { System.out.println(Long.numberOfLeadingZeros(123123)); } }
The output: