java.util.Collections.rotate()方法實例
rotate(List<?>, int) 方法用於通過指定的距離進行旋轉指定列表中的元素。
聲明
以下是java.util.Collections.rotate()方法的聲明。
public static void rotate(List<?> list,int distance)
參數
-
list--這是要被轉動的列表。
-
distance--這是旋轉列表的距離。
返回值
NA
異常
-
UnsupportedOperationException-- 被拋出,如果指定列表或其列表迭代器不支持set操作。
例子
下麵的例子顯示java.util.Collections.rotate()方法的使用
package com.yiibai; import java.util.*; public class CollectionsDemo { public static void main(String[] args) { // create array list object List numbers = new ArrayList(); // populate the list for (int i = 0; i < 15; i++) { numbers.add(i); } System.out.println("Before : "+Arrays.toString(numbers.toArray())); // rotate the list at distance 10 Collections.rotate(numbers, 10); System.out.println("After : "+Arrays.toString(numbers.toArray())); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
Before : [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] After : [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0, 1, 2, 3, 4]