Java 示例 - 旋转列表中的元素
-
问题描述
如何旋转列表的元素? -
解决方案
以下示例使用 rotate() 方法根据该方法的第二个参数旋转列表的元素。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); } }
-
结果
上面的代码示例将产生以下结果。List :[one, Two, three, Four, five, six] rotate: [Four, five, six, one, Two, three]