How to loop through ArrayList in Java

3 Answers

0 votes
import java.util.ArrayList;
import java.util.Arrays;

public class MyClass {
    public static void main(String args[]) {
        ArrayList<String> al = new ArrayList<String>(Arrays.asList("java", "c++", "c", "php"));
         
        for (String s : al) {
            System.out.println(s);
        }
    }
}



/*
run:

java
c++
c
php

*/

 



answered Apr 8, 2021 by avibootz
edited Apr 8, 2021 by avibootz
0 votes
import java.util.ArrayList;
import java.util.Arrays;

public class MyClass {
    public static void main(String args[]) {
        ArrayList<String> al = new ArrayList<String>(Arrays.asList("java", "c++", "c", "php"));
         
        for (int i = 0; i < al.size(); i++) {
            System.out.println(al.get(i));
        }
    }
}




/*
run:

java
c++
c
php

*/

 



answered Apr 8, 2021 by avibootz
0 votes
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;

public class MyClass {
    public static void main(String args[]) {
        ArrayList<String> al = new ArrayList<String>(Arrays.asList("java", "c++", "c", "php"));
         
        Iterator it = al.iterator();
        while (it.hasNext()) {
            System.out.println(it.next());
        }
    }
}




/*
run:

java
c++
c
php

*/

 



answered Apr 8, 2021 by avibootz

Related questions

1 answer 225 views
1 answer 209 views
1 answer 199 views
1 answer 256 views
1 answer 146 views
4 answers 259 views
259 views asked Apr 4, 2021 by avibootz
...