java中容器方法_java基础之容器、集合、集合常用方法

一、容器(Collection):数组是一种容器,集合也是一种容器

java编程中,装其他各种各样的对象(引用类型)的一种东西,叫容器

注意:

1、数组的长度是固定的

2、集合:长度不固定, 可以随时添加和删除,只要不超出内存, 随便往里添加

二、集合接口(六大接口)

1、Collection(包括List接口和Set接口)

List---(有顺序, 可以重复-->可以互相equals(引用类型))---下标(重复的标准就是相互equals)

LinkedList(链表)---(改快,查慢)

*ArrayList(数组)---(改慢,查快)

Set---(没有顺序, 不可以重复)

*HashSet(hash码表)(必须重写hashCode()方法)

TreeSet(二叉树---数据结构)

2、Map(键值对,每次往里放的时候都是一对一对的)(键不能重复,既不能相互equals)

*HashMap

TreeMap

3、Comparable(一个方法(comparaTo))

4、Iterator(循环遍历, 3个方法)

boolean hasNext()

Object next()

remove()

用法:

while(hasNext()) {

next()

}

三、Collection接口的方法

1、Collection接口的使用

Collection c = new ArrayList();

2、c.add(参数类型必须是Object)

3、c.remove方法: 通过判断两个对象是否互相的equals来确定是不是该删除该对象, 自定义的类, 需要自己重写父类的equals方法

重写equals方法, 也应该重写hashCode方法

4、hashCode通常用来做索引, 一个对象通过它的hashCode的值可以找到它在内存中的地址, 所以两个对象如果equals了, 而且又要作为索引的情况下, hashCode的值必须相等

举例说明:

packageutil;importjava.util.ArrayList;importjava.util.Collection;public classTextCollection {public static voidmain(String[] args) {//接口Collection不能直接new,必须由它的实现类来new,因为接口是抽象类,没有方法体,没法直接用

Collection c = new ArrayList(); //父类的引用指向子类的对象

c.add(1);

c.add("nihao");

c.add(newPerson());

System.out.println(c);//输出结果为:[1, nihao, Person [哈哈]]

c.remove(1);

c.remove("nihao");

c.remove(new Person());//new在内存中的指向不一样,必须equals

System.out.println(c.size());//输出结果为:1

System.out.println(c); //输出结果为:[Person [哈哈]]

}

}classPerson{

@OverridepublicString toString() {return "Person [哈哈]";

}

}

四、List接口

ArrayList(API中说初始容量为10的, 注意这个问题), LinkedList

有顺序, 可以重复添加

set(有一个返回值要注意 !)

retainAll(Collection)----返回一个boolean值, 当list的内容被改变的时候返回true, 否则返回false;仅保留此列表中包含在指定集合中的元素(可选操作)。

3aec56b4629830c75382b996ffb20f36.png

8bc79ca29b4160523b749602ab6cf8d2.png

2559b17acba974f400a72dad90682136.png

packageutil;importjava.util.ArrayList;importjava.util.List;public classTextCollection1 {

@SuppressWarnings("unchecked")public static voidmain(String[] args) {

List list1= newArrayList();

List list2= newArrayList();

List list3= newArrayList();for (int i = 0; i < 5; i++) {

list1.add("String" +i);if(i%2==0){

list2.add("String" +i);

list3.add("String" + i*10+1);

}

}

System.out.println(list1);//输出结果为:[String0, String1, String2, String3, String4]

System.out.println(list1.get(3)); //输出结果为:String3

System.out.println(list1.set(2, "哈哈")); //输出结果为:String2,有返回值

System.out.println(list1); //输出结果为:[String0, String1, 哈哈, String3, String4]

System.out.println(list1.remove(4)); //输出结果为:String4,有返回值

System.out.println(list1); //输出结果为:[String0, String1, 哈哈, String3]

System.out.println(list1.indexOf("String3")); //输出结果为:3

System.out.println(list1.lastIndexOf("String3")); //输出结果为:3//list1.retainAll(list2);//取两个集合中的交集,然后把交集的内容赋值给list1,如果list1中内容改变了,返回true,如果没改变(即两个集合没有交集),返回false

System.out.println(list1.retainAll(list2)); //输出结果为:true

System.out.println(list1); //输出结果为:[String0]//list1.retainAll(list3);

System.out.println(list1.retainAll(list3)); //输出结果为:false

System.out.println(list1); //输出结果为:[]

}

}

五、Map接口

Map接口

put:有个返回值

remove:有个返回值

07d729a5bdbc9ac4584991b19babf2c7.png

341991c161d395f8bb3fe209d0b785c6.png

7e34360e41b0a3406c203fcde5931aac.png

例子:

packageutil1;importjava.util.HashMap;importjava.util.Map;public classTextCollection2 {

@SuppressWarnings("unchecked")public static voidmain(String[] args) {

Map map= newHashMap();for (int i = 0; i < 5; i++) {

map.put(i,new Person("name" +i));

}

System.out.println(map);//输出值为:{0=Person [name0], 1=Person [name1], 2=Person [name2],//3=Person [name3], 4=Person [name4]}

map.put(5, new Person("新人"));

System.out.println(map);//输出值为:{0=Person [name0], 1=Person [name1], 2=Person [name2],//3=Person [name3], 4=Person [name4], 5=Person [新人]}

map.put(1, new Person("又来个新人"));

System.out.println(map);//输出值为:{0=Person [name0], 1=Person [又来个新人], 2=Person [name2],//3=Person [name3], 4=Person [name4], 5=Person [新人]}

System.out.println(map.get(1)); //输出值为:Person [又来个新人]

System.out.println(map.remove(1)); //输出值为:Person [又来个新人]

System.out.println(map); //输出值为:{0=Person [name0], 2=Person [name2], 3=Person [name3],//4=Person [name4], 5=Person [新人]}

System.out.println(map.remove(0, new Person("name" + 0))); //输出值为:true

System.out.println(map); //输出值为:2=Person [name2], 3=Person [name3], 4=Person [name4],//5=Person [新人]}

System.out.println(map.containsKey(4));//输出值为:true

System.out.println(map.containsValue(new Person("name" + 0)));//输出值为:false,在上一步已经删除

System.out.println(map.size());//输出值为:4

System.out.println(map.isEmpty());//输出值为:false

map.clear();

System.out.println(map);//输出值为:{}

Map map2= newHashMap();for (int i = 0; i < 5; i++) {

map2.put("a"+i, new Person("====a" +i));

}

map.putAll(map2);

System.out.println(map);//输出值为:{a1=Person [====a1], a2=Person [====a2], a3=Person [====a3],//a4=Person [====a4], a0=Person [====a0]}

}

}classPerson{

String name;publicPerson(String name){this.name =name;

}

@OverridepublicString toString() {return "Person [" + name + "]";

}

@Overridepublic inthashCode() {final int prime = 31;int result = 1;

result= prime * result + ((name == null) ? 0: name.hashCode());returnresult;

}

@Overridepublic booleanequals(Object obj) {if (this ==obj)return true;if (obj == null)return false;if (getClass() !=obj.getClass())return false;

Person other=(Person) obj;if (name == null) {if (other.name != null)return false;

}else if (!name.equals(other.name))return false;return true;

}

}

六、问题: 为什么不直接写ArrayList a = new ArrayList();而是Collection c = new ArrayList();?

Collection是一个接口,而ArrayList 是一个类。 ArrayList 继承并实现了Collection。

Collection c = new ArrayList();这句创建了一个ArrayList的对象后把上溯到了Collection。此时它是一个Collection对象了,有些ArrayList有但是Collection没有的属性和方法,它就不能再用了。而ArrayList a =new ArrayList();创建一对象则保留了ArrayList的所有属性。

为什么一般都使用 Collecton c = new ArrayList() ,而不用 ArrayList a = new ArrayList()呢?

问题就在于Collection有多个实现类,如 LinkedList或者ArrayList等等,现在你用的是ArrayList,也许哪一天你需要换成其它的实现类呢?,这时你只要改变这一行就行了:Collection c = new LinkedList(); 其它使用了Collection地方的代码根本不需要改动。假设你开始用 ArrayList a = new ArrayList(), 这下你有的改了,特别是如果你使用了 ArrayList特有的方法和属性。如果没有特别需求的话,最好使用

Collection c = new ArrayList(); ,便于程序代码的重构. 这就是面向接口编程的好处。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值