El mètode contains() de la interfície List a Java s'utilitza per comprovar si l'element especificat existeix a la llista donada o no.
pyspark
Sintaxi:
public boolean contains(Object obj) object-element to be searched for>
Paràmetres: Aquest mètode accepta un únic paràmetre obj la presència dels quals en aquesta llista s'ha de provar.
Valor de retorn: Retorna true si l'element especificat es troba a la llista, sinó retorna false.
Els programes següents il·lustren el mètode contains() a List:
Programa 1: Demostra el funcionament del mètode contains() a la llista d'enters.
variable global javascript
// Java code to demonstrate the working of> // contains() method in List interface> > import> java.util.*;> > class> GFG {> >public> static> void> main(String[] args)> >{> >// creating an Empty Integer List> >List arr =>new> ArrayList(>4>);> > >// using add() to initialize values> >// [1, 2, 3, 4]> >arr.add(>1>);> >arr.add(>2>);> >arr.add(>3>);> >arr.add(>4>);> > >// use contains() to check if the element> >// 2 exits or not> >boolean> ans = arr.contains(>2>);> > >if> (ans)> >System.out.println(>'The list contains 2'>);> >else> >System.out.println(>'The list does not contains 2'>);> > >// use contains() to check if the element> >// 5 exits or not> >ans = arr.contains(>5>);> > >if> (ans)> >System.out.println(>'The list contains 5'>);> >else> >System.out.println(>'The list does not contains 5'>);> >}> }> |
>
>Sortida:
The list contains 2 The list does not contains 5>
Programa 2: Demostra el funcionament del mètode contains() a Llista de cadena.
java factorial
// Java code to demonstrate the working of> // contains() method in List of string> > import> java.util.*;> > class> GFG {> >public> static> void> main(String[] args)> >{> >// creating an Empty String List> >List arr =>new> ArrayList(>4>);> > >// using add() to initialize values> >// ['geeks', 'for', 'geeks']> >arr.add(>'geeks'>);> >arr.add(>'for'>);> >arr.add(>'geeks'>);> > >// use contains() to check if the element> >// 'geeks' exits or not> >boolean> ans = arr.contains(>'geeks'>);> > >if> (ans)> >System.out.println(>'The list contains geeks'>);> >else> >System.out.println(>'The list does not contains geeks'>);> > >// use contains() to check if the element> >// 'coding' exits or not> >ans = arr.contains(>'coding'>);> > >if> (ans)> >System.out.println(>'The list contains coding'>);> >else> >System.out.println(>'The list does not contains coding'>);> >}> }> |
>
java és nul
>Sortida:
The list contains geeks The list does not contains coding>
Aplicació pràctica: En les operacions de cerca, podem comprovar si un determinat element existeix o no en una llista.
Referència: https://docs.oracle.com/javase/7/docs/api/java/util/List.html#contains(java.lang.Object)