“boucle java arraylist” Réponses codées

boucle java via ArrayList

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

boucle java arraylist

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

itérer à travers un 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

boucle 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

Réponses similaires à “boucle java arraylist”

Questions similaires à “boucle java arraylist”

Plus de réponses similaires à “boucle java arraylist” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code