Java编程思想第十一章持有对象之预备内容.ppt

Java编程思想第十一章持有对象之预备内容.ppt

  1. 1、本文档共68页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Java编程思想第十一章持有对象之预备内容

3、 ArrayList类的构造函数 ★ ArrayList类有三个构造函数 ◆ 这里分析其中两个 第二节 Collection家族 ⑴ public ArrayList() ◆ Constructs an empty list with an initial capacity of ten ◆ 创建一个空的ArrayList,它的初始容量为10 ⑵ public ArrayList(int? initialCapacity) ◆ Constructs an empty list with the specified initial capacity ◆ 使用指定容量创建一个空的ArrayList 4、 ArrayList类的20个方法 ★ 与List类似的不再列出,更详尽资料请 参阅官方文档 第二节 Collection家族 ⑴ Object clone() ◆ Returns a shallow copy of this ArrayList instance(浅复制) ⑵ protected ?void removeRange(int?fromIndex, int ?toIndex) ◆ Removes from this list all of the elements whose index is between fromIndex and toIndex ◆ 删除指定范围的元素 ⑶ void ensureCapacity(int? minCapacity) ◆ Increases the capacity of this ArrayList instance(增容) ⑷ void trimToSize() ◆ Trims the capacity of this ArrayList instance to be the list‘s current size(裁减) 四、 LinkedList类 1、 LinkedList类的概念 ★ LinkedList 采用双向循环链表实现 第二节 Collection家族 2、 LinkedList类的声明 ★ public class LinkedListE extends AbstractSequentialListE implements ListE,DequeE, Cloneable,Serializable 第二节 Collection家族 3、 LinkedList类的构造函数 ★ LinkedList有两个构造函数 第二节 Collection家族 ⑴ public LinkedList() ◆ Constructs an empty list ◆ 创建一个空链表 ⑵ public LinkedList(Collection? extends E? c) ◆ 根据参数Collection来创建这样一个LinkedList ◆ 其中:元素为指定集合中的元素,而元素的顺序 为Collection迭代器的返回顺序 4、 LinkedList类的39个方法 ★ 与List类似的不再列出,更详尽资料请 参阅官方文档 第二节 Collection家族 ★ 除了覆盖List的四种add方法外,LinkedList还 提供了自己的两种add方法 ⑴ void addFirst(E ?e) ◆ Inserts the specified element at the beginning of this list(在表头插入指定元素) ⑵ void addLast(E ?e) ◆ Appends the specified element to the end of this list(在表尾追加指定元素) ★ 除了覆盖List的get方法,LinkedList还提供了 自己的两种get方法 ⑶ E getFirst() ◆? Returns the first eleme

文档评论(0)

153****9595 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档