




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、Holding your objects,华南理工大学 计算机科学与工程学院 韦佳 ,You need to create any number of objects, anytime, anywhere. The java.util library has a reasonably complete set of container classes to solve this problem, the basic type of which are List, Set, Queue, and Map.,Generics and type-safe containers,One of the
2、problems of using pre-Java SE5 containers was that the compiler allowed you to insert an incorrect type in to a container. /ApplesAndOrangesWithoutGenerics.java With generics, youre prevented, at compile time, from putting the wrong types of objects to a container. /ApplesAndOrangesWithGenerics.java
3、,You are not limited to putting the exact type of objects into a container when you specify that type as a generic parameter. Upcasting works the same with generics as it does with other types. /GenericsAndUpcasting.java,Basic concepts of container,Collection: a sequence of individual elements with
4、one or more rules applied to them. List: must hold the elements in the way they were inserted; Set: cannot have duplicate elements; Queue: produces the elements in the order determined by a queuing discipline (FIFO).,Map: a group of key-value object pairs, allowing you to look up a value using a key
5、. A map allows you to look up an object using another object. Its also called an associative array.,Adding groups of elements,Arrays.asList(): takes either an array or a comma-separated list of elements and turn it into a List object. Collections.addAll(): takes a Collection object and either an arr
6、ay or a comma-separated list and adds the elements to the Collection. /AddingGroups.java,A limitation of Arrays.asList() is that it takes a best guess about the resulting type of the List, and doesnt pay attention to what youre assigning it to. /AsListInference.java,Printing containers,You can print
7、 containers without any help. /PrintingContainers.java List: ArrayList, LinkedList. Set: HashSet, TreeSet, LinkedHashSet. Map: HashMap, TreeMap, LinkedHashMap.,List,There are two types of List: ArrayList, which excels at randomly accessing elements. LinkedList, which excels at inserting and deleting
8、 elements from the middle of the List. /ListFeatures.java,Iterator,An iterator is an object whose job is to move through a sequence and select each object in that sequence without the client programmer knowing or caring about the underlying structure of that sequence. The Java Iterator can move in o
9、nly one direction.,Theres not much you can do with an Iterator except: Ask a Collection to hand you an Iterator using a method called iterator(). Get the next object in the sequence with next(). See if there are any more objects with hasNext(). Remove the last element returned by the iterator with r
10、emove(). /SimpleIteration.java /CrossContainerIteration.java,ListIterator,The ListIterator is a more powerful subtype of Iterator that is produced only by List classes. While Iterator can only move forward, ListIterator is bidirectional. /ListIteration.java,LinkedList,The LinkedList performs inserti
11、on and removal in the middle of the List more efficiently than ArrayList. Conversely, the LinkedList is less efficient for random-access operations than ArrayList. /LinkedListFeatures.java,Stack,A stack is sometimes referred to as a “last-in, first out” (LIFO) container. LinkedList has methods that
12、directly implement stack functionality, so you can also just use a LinkedList rather than making a stack class. /Stack.java; StackTest.java,Set,A Set refuses to hold more than one instance of each object value. /SetOfInteger.java If you want the results to be sorted, one approach is to use a TreeSet instead of a HashSet. /SortedSetOfInteger.java; SetOperations.java,Map,The ability to map objects to other objects can be an powerful way to solve programming problems. A Map easily solves the problem. /Statistics.java; PetMap.java
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 【正版授权】 ISO/IEC 27553-2:2025 EN Information security,cybersecurity and privacy protection - Security and privacy requirements for authentication using biometrics on mobile devices
- 代驾司机安全岗位面试问题及答案
- 2025届河北省阜平一中化学高二下期末质量检测模拟试题含解析
- 2025届云南省保山市昌宁一中化学高一下期末经典模拟试题含解析
- 母鸡孵化小鸡管理办法
- 公务接待出差管理办法
- 保健食品备案管理办法
- 巨细胞病毒抑制机制-洞察及研究
- 公安监管医院管理办法
- 三查四定知识详解与应用
- 机加工工艺培训
- CT增强扫描造影剂外渗的预防与处理
- GA 1283-2015住宅物业消防安全管理
- midas分析设计原理
- 质量管理手册(隧道)(中交路桥建设有限公司)
- 黄大年式教学团队申报材料
- 出香港货物发票样板样本空白
- 医院免疫室标准化操作程序免疫室内质量控制操作指南(ELISA)人民医院检验科免疫SOP人民医院质量管理体系课件
- 柳州市柳东新区南庆安置区项目工程基坑支护方案
- 卵巢肿瘤ppt课件
- 发电可靠性考试真题及答案
评论
0/150
提交评论