“java arraylist loop” Código de respuesta

java bucle a través de ArrayList

ArrayList<String> namesList = new ArrayList<String>(Arrays.asList( "alex", "brian", "charles") );
         
for(String name : namesList)
{
    System.out.println(name);
}
Annoyed Armadillo

java arraylist loop

      for (int counter = 0; counter < arrlist.size(); counter++) { 		      
          System.out.println(arrlist.get(counter)); 		
      }
Nice Newt

iterar a través de una Java ArrayList

// will iterate through each index of the array list
// using the size of the array list as the max.
// (the last index is the size of the array list - 1)

for (int i = 0; i < myArrayList.size(); i++) {
  
  System.out.println(myArrayList.get(i));
  // will print each index as it loops
}  
GitMoney

java arraylist loop


    List<String> contain = new ArrayList<String>();
    contain.add("HPDH-1,001, Check-out date: 7/7/7");
    contain.add("JTI-1,001, Check-out date: 7/7/7");
    String code = "JTI-1 ";
    for (int i = 0; i < contain.size(); i++) {
        if (contain.get(i).contains(code.trim())) {<---Use trim it is possible that code may have extra space
            System.out.println(contain.get(i));
        }
    }

Beautiful Barracuda

Respuestas similares a “java arraylist loop”

Preguntas similares a “java arraylist loop”

Más respuestas relacionadas con “java arraylist loop” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código