Q:

Java program to search an element from an ArrayList

belongs to collection: Java ArrayList Programs

0

Given an ArrayList, and we have to find/search an element from the list using Java program.

ArrayList.contains()

Method is used to check whether an element is exists in the ArrayList or not, this method return "false" if element is not found, and returns "true" if element exists in the ArrayList.

Syntax:

boolean ArrayList.contains(element);

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Consider the program

import java.util.ArrayList;

public class SearchAnElement {

  public static void main(String[] args) {
    //ArrayList object 
    ArrayList arrList = new ArrayList();

    //adding elements in the list
    arrList.add("100");
    arrList.add("200");
    arrList.add("300");
    arrList.add("400");
    arrList.add("500");

    //searching element "300"
    boolean isFound = arrList.contains("300");
    if (isFound == false)
      System.out.println("Element is not found in the list");
    else
      System.out.println("Element is found in the list");

  }
}

Output

Element is found in the list

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java program to find index of an element from an A... >>
<< Java program to create a sub list from an ArrayLis...