JAVA集合
学习资料:
<java generics and collections>
http://www.cnblogs.com/xwdreamer/archive/2012/05/30/2526822.html
小知识:
Java自JDK早期,就引入了Java Collection Framework。设计JCF的那个人,后来还写了一本书,叫《Effective Java》。
java集合类在util工具类包下,由collection和map两个接口派生而出。
[ 虚线---抽象类, 点线---接口, 实线---实现类, 粗线---常用]
比较:
Iterator接口也是java集合框架的成员,要创Iterator对象,必须有一个被迭代的集合。但是修改迭代变量不会改变集合元素的值,因为是值传递。
- boolean hasNext();
- Object next(): 返回集合的下一个元素
- void remove(); 删除集合上一次next方法返回的元素
SET
1.
To follow the path:
look to the master,
follow the master,
walk with the master,
see through the master,
become the master.