Home > Java > javaTutorial > body text

Java example - List loop moves elements

黄舟
Release: 2017-01-22 15:09:51
Original
1171 people have browsed it

The following example demonstrates how to use rotate() of the Collections class to move elements cyclically. The second parameter of the method specifies the starting position of the movement:

/*
 author by w3cschool.cc
 Main.java
 */import java.util.*;public class Main {
   public static void main(String[] args) {
      List list = Arrays.asList("one Two three Four five six".split(" "));
      System.out.println("List :"+list);
      Collections.rotate(list, 3);
      System.out.println("rotate: " + list);
   }}
Copy after login

The output result of the above code is:

List :[one, Two, three, Four, five, six]rotate: [Four, five, six, one, Two, three]
Copy after login

The above is the Java example - List circularly moving elements. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template