Java lang.Long.numberOfLeadingZeros() method in Java with Examples (original) (raw)
Last Updated : 23 May, 2019
java.lang.Long.numberOfLeadingZeros() is a built-in function in Java which returns the number of leading zero bits to the left of the highest order set bit. In simple terms, it returns the (64-position) where position refers to the highest order set bit from the right. If the number does not contain any set bit(in other words, if the number is zero), it returns 64.
Syntax:
public static long numberOfLeadingZeros(long num) Parameters: num - the number passed Returns: the number of leading zeros before the highest-order set bit
Examples:
Input : 8 Output : 60 Explanation: Binary representation of 8 is 1000 No of leading zeros to the left of the highest-order set bit is 60.
Input : 25 Output : 59
The program below illustrates the java.lang.Long.numberOfLeadingZeros() function:
Program 1:
import
java.lang.*;
public
class
GFG {
`` public
static
void
main(String[] args)
`` {
`` long
l =
8
;
`` System.out.println(
"Number of leading zeros = "
`` + Long.numberOfLeadingZeros(l));
`` l =
25
;
`` System.out.println(
"Number of leading zeros = "
`` + Long.numberOfLeadingZeros(l));
`` }
}
Output:
Number of leading zeros = 60 Number of leading zeros = 59
Note: In case of a negative number, every number will have 0 leading zeros.
Program 2: The program below demonstrates the use of function when a negative number is passed.
import
java.lang.*;
public
class
GFG {
`` public
static
void
main(String[] args)
`` {
`` long
l = -
12
;
`` System.out.println(
"Number of leading zeros = "
`` + Long.numberOfLeadingZeros(l));
`` l = -
100
;
`` System.out.println(
"Number of leading zeros = "
`` + Long.numberOfLeadingZeros(l));
`` }
}
Output:
Number of leading zeros = 0 Number of leading zeros = 0
Program 3: It returns an error message when a decimal a string value is passed as an argument.
import
java.lang.*;
public
class
GFG {
`` public
static
void
main(String[] args)
`` {
`` System.out.println(
"Number of leading zeros = "
`` + Long.numberOfLeadingZeros(
10.45
));
`` }
}
Output:
prog.java:16: error: incompatible types: possible lossy conversion from double to long + Long.numberOfLeadingZeros(10.45));
Program 4: When a string value is passed in argument.
import
java.lang.*;
public
class
GFG {
`` public
static
void
main(String[] args)
`` {
`` System.out.println(
"Number of leading zeros = "
`` + Long.numberOfLeadingZeros(
"10"
));
`` }
}
Output:
prog.java:16: error: incompatible types: String cannot be converted to long + Long.numberOfLeadingZeros("10"));