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]