代码拉取完成,页面将自动刷新
package ch5;
import java.util.*;
public class TestArrayList {
public static void main(String[] args) {
List l1 = new ArrayList();
for(int i = 0; i <= 9; i++) {
l1.add("a" + i);
}
System.out.println(l1);
Collections.shuffle(l1); //
System.out.println(l1);
Collections.reverse(l1); //
System.out.println(l1);
Collections.sort(l1); //
System.out.println(l1);
System.out.println(Collections.binarySearch(l1, "a5")); //ֲ
List l2 = new ArrayList();
l2.add(new Name("Kevin", "Durant"));
l2.add(new Name("Stephen", "Curry"));
l2.add(new Name("Klay", "Thompson"));
l2.add(new Name("Draymond", "Green"));
System.out.println(l2);
Collections.sort(l2);
System.out.println(l2);
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。