Tester si un élément existe dans un tableau en Java

Dans ce tutoriel nous allons découvrir comment vérifier si un élément existe dans un tableau en Java.
 
 

Exemple: Tableau de chaîne
import java.util.*;

public class Main {

    public static void main(String[] args) {

        String[] tab = {"Java", "PHP", "C++"};

        // Convertir le tableau en liste
        List<string> list = Arrays.asList(tab);
        
        if(list.contains("Java")){
            System.out.println("L'élément Java existe");
        }
    }
}

 
Sortie:

L'élément Java existe

 
 

Exemple: Tableau de type int
public class Main {

    public static boolean check(int[] tab, int val) {
        boolean b = false;
		
        for(int i : tab){
            if(i == val){
                b = true;
                break;
            }
        }
        return b;
    }

    public static void main(String[] args) {
        int[] tab = {9, 0, 8, 2, 5, 7, 3};
        if(check(tab, 5)){
            System.out.println("5 existe dans le tableau.");
        }
    }
}

 
Sortie:

5 existe dans le tableau.

 

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *