Vector java 中提供最早集合 线程同步 枚举 Enumeration 迭代器的前身与Iterator 功能类似的 Set 接口 定义:包含不可重复元素集合 无序系列 集合的取出方式 增强 for 循环 迭代器 多个子类HashSet LinkedSet ...
分类:
其他好文 时间:
2019-03-22 20:20:54
阅读次数:
159
``` /** * Parse the data-nodes the block belongs to and choose one, * which will be the replication source. * * We prefer nodes that are in DECOMMISSI... ...
分类:
其他好文 时间:
2018-09-18 00:29:49
阅读次数:
787
List apple=new ArrayList;ArrayList向上转型为List。四大集合:List、Set、Queue、Map。其中有LinkedList、HashList、LinkedSet、TreeSet、HashSet、LinkedMap、TreeMap、HashMap;Linked....
分类:
其他好文 时间:
2014-10-26 00:22:53
阅读次数:
232
??
/*
* 1.存储对象可以考虑:①数组 ②集合
* 2.数组存储对象的特点:Student[] stu = new Student[20]; stu[0] = new Student();....
* >弊端:①一旦创建,其长度不可变。②真实的数组存放的对象的个数是不可知。
* 3.集合
* Collection接口
* |------Li...
分类:
其他好文 时间:
2014-09-29 12:31:00
阅读次数:
337