转自:
Java Collections swap()方法具有什么功能呢?
下文笔者讲述Collections swap()方法的功能简介说明,如下所示:
Collections swap()方法的功能:
此方法无返回值,只会对集合中的元素位置进行交换
Collections swap()方法的语法:
public static void swap(List l , int f1, int f2);
参数
列表l:待交换元素的列表
int f1:表示要与其他元素f2交换的f1元素的索引
int f2:表示要与其他元素f1交换的f2元素的索引
注意事项:
1.swap()方法在java.util包中可用
2.swap()方法用于将给定列表(l)中索引为f1的元素与索引为f2的元素交换
3.swap()方法是一个静态方法,可以通过类名进行访问,如果尝试使用类对象访问该方法,那么也不会出现任何错误
4.swap()方法在分配索引时可能会引发异常
IndexOutOfBoundsException:当给定索引f1或f2不在范围内时,可能引发此异常
例
package com.java265.other; import java.util.ArrayList; import java.util.Collections; import java.util.List; public class Test15 { /** * java265.com 示例 Collections.synchronizedCollection方法示例分享 */ public static void main(String[] args) { List<Integer> list = new ArrayList<Integer>(); // 通过使用add()方法是添加 // 数组列表中的对象 list.add(88); list.add(99); list.add(22); list.add(111); list.add(333); // 显示ArrayList- System.out.println("Array List: " + list); Collections.swap(list, 2, 4); // 显示同步的ArrayList- System.out.println("swap(2,4): " + list); } } -------运行以上代码,将会输出以下信息----- Array List: [88, 99, 22, 111, 333] swap(2,4): [88, 99, 333, 111, 22]