2019年9月17日
摘要: [TOC] 1.collection接口中的迭代器模式 迭代器分析: Iterator接口有hasNext()、next(),remove()三个方法 Iterable接口的iterator() 方法,传入Iterable接口对象,返回Iterator接口对象 collection继承了Iterab 阅读全文
posted @ 2019-09-17 11:07 KillerTT 阅读(335) 评论(0) 推荐(0) 编辑
摘要: [TOC] java容器概述 jdk提供的容器分为collection和map两类,其中collection是对象集合,map是键值对集合 1.collection接口 (1)collection接口方法 isEmpty();//篮子是否空 size(); //集合大小 Iterator();//获 阅读全文
posted @ 2019-09-17 10:55 KillerTT 阅读(212) 评论(0) 推荐(0) 编辑