Doubles es una clase de utilidad para el tipo primitivo double . Proporciona métodos de utilidad estática relacionados con las primitivas dobles, que aún no se encuentran ni en Double ni en Arrays.
Declaración :
@GwtCompatible(emulated=true) public final class Doubles extends Object
La siguiente tabla muestra el resumen de campo para la clase de dobles de guayaba:
Some of the methods provided by Guava Doubles Class are :
Exceptions :
- min: IllegalArgumentException si la array está vacía.
- max: IllegalArgumentException si la array está vacía.
- 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 Guava Doubles Class:
A continuación se dan algunos ejemplos que muestran la implementación de los métodos de Guava Doubles Class:
Ejemplo 1:
// Java code to show implementation // of Guava Doubles.asList() method import com.google.common.primitives.Doubles; import java.util.*; class GFG { // Driver method public static void main(String[] args) { double arr[] = { 2.6, 4.6, 1.2, 2.4, 1.5 }; // Using Doubles.asList() method which // converts array of primitives to array of objects List<Double> myList = Doubles.asList(arr); // Displaying the elements System.out.println(myList); } }
Producción :
[2.6, 4.6, 1.2, 2.4, 1.5]
Ejemplo 2:
// Java code to show implementation // of Guava Doubles.toArray() method import com.google.common.primitives.Doubles; import java.util.*; class GFG { // Driver method public static void main(String[] args) { List<Double> myList = Arrays.asList(2.6, 4.6, 1.2, 2.4, 1.5); // Using Doubles.toArray() method which // converts a List of Doubles to an // array of double double[] arr = Doubles.toArray(myList); // Displaying the elements System.out.println(Arrays.toString(arr)); } }
Producción :
[2.6, 4.6, 1.2, 2.4, 1.5]
Ejemplo 3:
// Java code to show implementation // of Guava Doubles.concat() method import com.google.common.primitives.Doubles; import java.util.*; class GFG { // Driver method public static void main(String[] args) { double[] arr1 = { 2.6, 4.6, 1.2 }; double[] arr2 = { 2.4, 1.5 }; // Using Doubles.concat() method which // combines arrays from specified // arrays into a single array double[] arr = Doubles.concat(arr1, arr2); // Displaying the elements System.out.println(Arrays.toString(arr)); } }
Producción :
[2.6, 4.6, 1.2, 2.4, 1.5]
Ejemplo 4:
// Java code to show implementation // of Guava Doubles.contains() method import com.google.common.primitives.Doubles; class GFG { // Driver method public static void main(String[] args) { double[] arr = { 2.6, 4.6, 1.2, 2.4, 1.5 }; // Using Doubles.contains() method which // checks if element is present in array // or not System.out.println(Doubles.contains(arr, 2.5)); System.out.println(Doubles.contains(arr, 1.5)); } }
producción :
false true
Ejemplo 5:
// Java code to show implementation // of Guava Doubles.min() method import com.google.common.primitives.Doubles; class GFG { // Driver method public static void main(String[] args) { double[] arr = { 2.6, 4.6, 1.2, 2.4, 1.5 }; // Using Doubles.min() method System.out.println(Doubles.min(arr)); } }
Producción :
1.2
Ejemplo 6:
// Java code to show implementation // of Guava Doubles.max() method import com.google.common.primitives.Doubles; class GFG { // Driver method public static void main(String[] args) { double[] arr = { 2.6, 4.6, 1.2, 2.4, 1.5 }; // Using Doubles.max() method System.out.println(Doubles.max(arr)); } }
Producción :
4.6
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