Collections类rotate()方法
- rotate() 方法可在
java.util
包。 - rotate() 方法用于旋转列表(
l
) 给定距离的元素 (dis
)。 - rotate() 方法是一个静态方法,因此可以通过类名访问它,如果我们尝试使用类对象访问该方法,则不会出现错误。
- rotate() 方法可能在旋转列表元素时抛出异常。
UnsupportedOperationException:当给定的参数列表(l
) un-support 设置操作。
用法:
public static void rotate(List l, int dis);
参数:
List l
– 代表列表(l
) 进行旋转。int dis
– 表示旋转列表元素的距离。
返回值:
这个方法的返回类型是void
,它什么都不返回。
例:
// Java program is to demonstrate the example of
// rotate(List l, int dis) method of Collections
import java.util.*;
public class RotateOfCollections {
public static void main(String args[]) {
// Instatiates a array list object
List < Integer > arr_l = new ArrayList < Integer > ();
// Declare distance for rotating purpose
int dis = 4;
// By using add() method is to add
// objects in an array list
arr_l.add(10);
arr_l.add(20);
arr_l.add(30);
arr_l.add(40);
arr_l.add(50);
arr_l.add(60);
arr_l.add(70);
arr_l.add(80);
arr_l.add(90);
arr_l.add(100);
// Display ArrayList
System.out.println("Array List:" + arr_l);
// By using rotate() method is to
// rotate the order of elements at
// the given distance
Collections.rotate(arr_l, dis);
// Display rotatable ArrayList
System.out.println("Collections.rotate(arr_l,dis):" + arr_l);
}
}
输出
Array List:[10, 20, 30, 40, 50, 60, 70, 80, 90, 100] Collections.rotate(arr_l,dis):[70, 80, 90, 100, 10, 20, 30, 40, 50, 60]
相关用法
- Java Collections reverseOrder()用法及代码示例
- Java Collections replaceAll()用法及代码示例
- Java Collections reverse()用法及代码示例
- Java Collections synchronizedSortedSet()用法及代码示例
- Java Collections checkedQueue()用法及代码示例
- Java Collections unmodifiableNavigableSet()用法及代码示例
- Java Collections checkedSet()用法及代码示例
- Java Collections copy()用法及代码示例
- Java Collections checkedMap()用法及代码示例
- Java Collections synchronizedNavigableSet()用法及代码示例
- Java Collections singleton()用法及代码示例
- Java Collections fill()用法及代码示例
- Java Collections nCopies()用法及代码示例
- Java Collections emptySet()用法及代码示例
- Java Collections newSetFromMap()用法及代码示例
- Java Collections checkedSortedMap()用法及代码示例
- Java Collections addAll()用法及代码示例
- Java Collections sort()用法及代码示例
- Java Collections emptySortedSet()用法及代码示例
- Java Collections max()用法及代码示例
注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Collections rotate() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。