El método floorPowerOfTwo() de la clase IntMath de Guava acepta un parámetro y devuelve la mayor potencia de dos menos que el valor pasado en el parámetro. Esto es equivalente a: checkedPow(2, log2(x, FLOOR)) .
Sintaxis:
public static int floorPowerOfTwo(int x)
Parámetros : este método acepta un solo parámetro x que es un valor integral.
Valor devuelto: el método devuelve la mayor potencia de dos menor o igual que x.
Excepciones: el método floorPowerOfTwo(int x) lanza IllegalArgumentException si x <= 0.
Ejemplo 1 :
// Java code to show implementation // of floorPowerOfTwo(int x) method // of Guava's IntMath class import java.math.RoundingMode; import com.google.common.math.IntMath; class GFG { // Driver code public static void main(String args[]) { int n1 = 10; // Using floorPowerOfTwo(int x) method // of Guava's IntMath class int ans1 = IntMath.floorPowerOfTwo(n1); System.out.println("Largest power of 2 less " + "than or equal to " + n1 + " is : " + ans1); int n2 = 127; // Using floorPowerOfTwo(int x) method // of Guava's IntMath class int ans2 = IntMath.floorPowerOfTwo(n2); System.out.println("Largest power of 2 less " + "than or equal to " + n2 + " is : " + ans2); } }
Producción :
Largest power of 2 less than or equal to 10 is : 8 Largest power of 2 less than or equal to 127 is : 64
Ejemplo 2:
// Java code to show implementation // of floorPowerOfTwo(int x) method // of Guava's IntMath class import java.math.RoundingMode; import com.google.common.math.IntMath; class GFG { static int findFloorPow(int x) { try { // Using floorPowerOfTwo(int x) // method of Guava's IntMath class // This should raise "IllegalArgumentException" // as x <= 0 int ans = IntMath.floorPowerOfTwo(x); // Return the answer return ans; } catch (Exception e) { System.out.println(e); return -1; } } // Driver code public static void main(String args[]) { int x = -3; try { // Function calling findFloorPow(x); } catch (Exception e) { System.out.println(e); } } }
Producción :
java.lang.IllegalArgumentException: x (-3) must be > 0
Publicación traducida automáticamente
Artículo escrito por bansal_rtk_ y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA