Integer.numberOfTrailingZeros(int i) has the following syntax.
public static int numberOfTrailingZeros(int i)
In the following code shows how to use Integer.numberOfTrailingZeros(int i) method.
public class Main { public static void main(String args[]) { int n = 170; // 10101010 System.out.println("Value in binary: 10101010"); System.out.println("Number of trailing zeros : " + Integer.numberOfTrailingZeros(n)); } }
The code above generates the following result.