How to swap two elements in an ArrayList in Java

1 Answer

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

public class MyClass {
    public static void main(String args[]) {
        ArrayList<Integer> al = new ArrayList<>(Arrays.asList(40, 89, 23, 99, 89)); 
        
        System.out.println(al); 
        
        Collections.swap(al, 0, 2);

        System.out.println(al); 
   
    }
}
     
     
   
     
     
/*
run:
     
[40, 89, 23, 99, 89]
[23, 89, 40, 99, 89]

*/

 



answered Aug 22, 2021 by avibootz

Related questions

1 answer 151 views
151 views asked Sep 26, 2016 by avibootz
1 answer 117 views
1 answer 253 views
1 answer 246 views
1 answer 169 views
...