Guayaba de Java | Método Floats.indexOf(float[] array, float[] target) con ejemplos

El método Floats.indexOf(float[] array, float[] target) de la clase Floats 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 inicio de su primera aparición . Si el destino no existe dentro de la array, el método devuelve -1 .

Sintaxis:

public static int indexOf(array flotante[], destino flotante[])

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.
  • objetivo: que es la array que se buscará como una subsecuencia de la array especificada.

Valor devuelto: el método devuelve un valor entero de la siguiente manera:

  • Devuelve la posición de inicio de la primera aparición del destino si la array de 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 Floats.indexOf(float[] array,
// float[] target) method
  
import com.google.common.primitives.Floats;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
  
        // Creating an float array
        float[] arr = { 1.2f, 2.3f, 3.4f,
                        4.5f, 3.4f, 5.6f };
  
        float[] target = { 3.4f, 4.5f, 3.4f };
  
        System.out.println("Array: "
                           + Arrays.toString(arr));
  
        System.out.println("Target Array: "
                           + Arrays.toString(target));
  
        // Using Floats.indexOf(float[] array, float[] 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 = Floats.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");
        }
    }
}
Producción:

Array: [1.2, 2.3, 3.4, 4.5, 3.4, 5.6]
Target Array: [3.4, 4.5, 3.4]
Target is present at index 2

Ejemplo 2:

// Java code to show implementation of
// Guava's Floats.indexOf(float[] array,
// float[] target) method
  
import com.google.common.primitives.Floats;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
  
        // Creating an float array
        float[] arr = { 3.2f, 5.3f, 7.4f,
                        11.4f, 13.5f };
  
        float[] target = { 17.5f, 12.4f };
  
        System.out.println("Array: "
                           + Arrays.toString(arr));
  
        System.out.println("Target Array: "
                           + Arrays.toString(target));
  
        // Using Floats.indexOf(float[] array, float[] 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 = Floats.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");
        }
    }
}
Producción:

Array: [3.2, 5.3, 7.4, 11.4, 13.5]
Target Array: [17.5, 12.4]
Target is not present in the array

Referencia: https://google.github.io/guava/releases/22.0/api/docs/com/google/common/primitives/Floats.html#indexOf-float:A-float:A-

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *