El método Doubles.indexOf(double[] array, double target) de la clase Doubles de Guava acepta dos parámetros array y target . Si el destino existe dentro de la array, el método devuelve la posición de su primera aparición . Si el destino no existe dentro de la array, el método devuelve -1 .
Sintaxis:
public static int indexOf(doble[] array, doble objetivo)
Parámetros: El método acepta dos parámetros:
- array: que es la array de enteros en la que se verificará el índice de la array de destino.
- destino: que es el valor que se buscará como un elemento en la array especificada.
Valor devuelto: el método devuelve un valor entero de la siguiente manera:
- Devuelve la posición de la primera aparición del destino si el destino existe en la array.
- De lo contrario, devuelve -1 si el objetivo no existe en la array.
Excepciones: el método no arroja ninguna excepción.
Los siguientes ejemplos ilustran la implementación del método anterior:
Ejemplo 1:
// Java code to show implementation of // Guava's Doubles.indexOf(double[] array, // double target) method import com.google.common.primitives.Doubles; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating an double array double[] arr = { 3.2, 5.3, 7.4, 11.4, 13.5 }; double target = 7.4; System.out.println("Array: " + Arrays.toString(arr)); System.out.println("Target: " + target); // Using Doubles.indexOf(double[] array, double target) // method to get the position of the first // occurrence of the specified target within array, // or -1 if there is no such occurrence. int index = Doubles.indexOf(arr, target); if (index != -1) { System.out.println("Target is present at index " + index); } else { System.out.println("Target is not present " + "in the array"); } } }
Array: [3.2, 5.3, 7.4, 11.4, 13.5] Target: 7.4 Target is present at index 2
Ejemplo 2:
// Java code to show implementation of // Guava's Doubles.indexOf(double[] array, // double target) method import com.google.common.primitives.Doubles; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating an double array double[] arr = { 3, 5, 7, 11, 13 }; double target = 23; System.out.println("Array: " + Arrays.toString(arr)); System.out.println("Target: " + target); // Using Doubles.indexOf(double[] array, double target) // method to get the start position of the first // occurrence of the specified target within array, // or -1 if there is no such occurrence. int index = Doubles.indexOf(arr, target); if (index != -1) { System.out.println("Target is present at index " + index); } else { System.out.println("Target is not present" + " in the array"); } } }
Array: [3.0, 5.0, 7.0, 11.0, 13.0] Target: 23.0 Target is not present in the array
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