Java Long .numberOfLeadingZeros ( long i)
Syntax
Long.numberOfLeadingZeros(long i) has the following syntax.
public static int numberOfLeadingZeros(long i)
Example
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));
}//from w ww .j a va2s . c o m
}
The output: