“Pętla Java ArrayList” Kod odpowiedzi

Pętla Java przez ArrayList

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

Pętla Java ArrayList

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

iteruj przez arraylist Java

// 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

Pętla Java ArrayList


    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

Odpowiedzi podobne do “Pętla Java ArrayList”

Pytania podobne do “Pętla Java ArrayList”

Więcej pokrewnych odpowiedzi na “Pętla Java ArrayList” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu