Ints es una clase de utilidad para el tipo primitivo int. Proporciona métodos de utilidad estáticos relacionados con primitivas int, que aún no se encuentran en Integer o Arrays.
Declaración :
@GwtCompatible(emulated=true) public final class Ints extends Object
La siguiente tabla muestra el resumen de campo para Guava Ints Class:
Algunos de los métodos provistos por Ints Class son:
Excepciones:
- checkedCast: IllegalArgumentException si el valor es mayor que Integer.MAX_VALUE o menor que Integer.MIN_VALUE
- min: IllegalArgumentException si la array está vacía.
- max: IllegalArgumentException si la array está vacía.
- fromByteArray: IllegalArgumentException si los bytes tienen menos de 4 elementos.
- sureCapacity: IllegalArgumentException si minLength o padding es negativo.
- toArray: NullPointerException si la colección o cualquiera de sus elementos es nulo.
La siguiente tabla muestra algunos otros métodos provistos por la clase Ints de Guava:
A continuación se dan algunos ejemplos que muestran la implementación de métodos de la clase Ints de Guava:
Ejemplo 1:
// Java code to show implementation // of Guava Ints.asList() method import com.google.common.primitives.Ints; import java.util.*; class GFG { // Driver method public static void main(String[] args) { int arr[] = { 5, 10, 15, 20, 25 }; // Using Ints.asList() method which wraps // the primitive integer array as List of // integer Type List<Integer> myList = Ints.asList(arr); // Displaying the elements System.out.println(myList); } }
Producción :
[5, 10, 15, 20, 25]
Ejemplo 2:
// Java code to show implementation // of Guava Ints.toArray() method import com.google.common.primitives.Ints; import java.util.*; class GFG { // Driver method public static void main(String[] args) { List<Integer> myList = Arrays.asList(5, 10, 15, 20, 25); // Using Ints.toArray() method which // converts a List of Integer to an // array of int int[] arr = Ints.toArray(myList); // Displaying the elements System.out.println(Arrays.toString(arr)); } }
Producción :
[5, 10, 15, 20, 25]
Ejemplo 3:
// Java code to show implementation // of Guava Ints.concat() method import com.google.common.primitives.Ints; import java.util.*; class GFG { // Driver method public static void main(String[] args) { int[] arr1 = { 5, 10, 15 }; int[] arr2 = { 20, 25 }; // Using Ints.concat() method which // combines arrays from specified // arrays into a single array int[] arr = Ints.concat(arr1, arr2); // Displaying the elements System.out.println(Arrays.toString(arr)); } }
Producción :
[5, 10, 15, 20, 25]
Ejemplo 4:
// Java code to show implementation // of Guava Ints.contains() method import com.google.common.primitives.Ints; class GFG { // Driver method public static void main(String[] args) { int[] arr = { 5, 10, 15, 20 }; // Using Ints.contains() method which // checks if element is present in array // or not System.out.println(Ints.contains(arr, 10)); System.out.println(Ints.contains(arr, 17)); } }
producción :
true false
Ejemplo 5:
// Java code to show implementation // of Guava Ints.min() method import com.google.common.primitives.Ints; class GFG { // Driver method public static void main(String[] args) { int[] arr = { 5, 10, 15, 20 }; // Using Ints.min() method System.out.println(Ints.min(arr)); } }
Producción :
5
Ejemplo 6:
// Java code to show implementation // of Guava Ints.max() method import com.google.common.primitives.Ints; class GFG { // Driver method public static void main(String[] args) { int[] arr = { 5, 10, 15, 20 }; // Using Ints.max() method System.out.println(Ints.max(arr)); } }
Producción :
20
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA