Tist和Ste

Tist方法

public class TestList {
    //ArrayList:List主要实现类
    @Test
    public void test2(){
        List list = new ArrayList();
        list.add(123);
        list.add(456);
        list.add(new String("AA"));
        list.add(new String("GG"));
        System.out.println(list.indexOf(456));//返回和个元素在这个集合中第一次出现的元素如果没有返回-1
        System.out.println(list.lastIndexOf(456));//最后一次出现的位置没有返回-1
        System.out.println(list.indexOf(123)==list.lastIndexOf(123));
        System.out.println(list.indexOf(666));

        List list1 = list.subList(0,2);//    2>x=0
        System.out.println(list1);
    }
    @Test
    public void test1(){
        List list = new ArrayList();
        list.add(123);
        list.add(456);
        list.add(new String("AA"));
        list.add(new String("GG"));
        System.out.println(list);
        System.out.println("有"+list.size()+"个");

        list.add(0,999);//添加制定位置的索引
        System.out.println(list);

        Object object = list.get(2);//打印制定索引
        System.out.println(object);

        Object object1 = list.remove(0);//删除制定位置索引元素
        System.out.println(object1);
        System.out.println(list);

        Object object2 = list.set(0,666);//修改制定元素
        System.out.println(object2);
        System.out.println(list);
    }
}
Ste

/**
 * Ser:存储的元素是无序的,不可重复的
 * 1.无序性: 无序性! = 随机性 真正的无序性,值得是元素在底层存储的位置是无序的
 * 2.不可重复性:当向Set中添加进相同的元素的时候,后面的这个不能添加进去
 *
 * 说明:要求添加进Set中的元素所在的类,一定要重写equals()个hashCode()方法,
 * 进而保证Set中元素的不可重复性
 *
 * Set中的元素是如果和进行存储的呢?  使用了哈希算法
 * 当向Set中添加元素时,首先调用此对象所在的类
 *
 *
 * LinkedHashSet:使用连边维护了一个添加集合中的顺序
 * 调至当我们遍历LinkedHashSet集合元素时,是按照添加进去的书序遍历的
 *
 * TreeSet
 * 1.向TreeSet中添加的元素必须是同一个类
 * 2.可以按照添加进集合中的元素的制定的顺序遍历
 * 想String 包装类等,默认按照从小到大的顺序遍历
 */

你可能感兴趣的:(Tist和Ste)