一、arrayList对象创建

当调用无参构造方法来构造一个ArrayList对象时,它会在内部分配一个初始大小为10的一个Object类型数组, 当添加的数据容量超过数组大小的时候,会产生一个新的数组,新的数组大小为原来数组大小的1.5倍+1, 接着把原数组中的数据拷贝到新的素组中,并让原来的引用变量指向这个新数组,参见ArrayList源代码 ;

二、arrayList相关方法:

添加元素:add(E e)   

指定位置添加:add(int index, E element) 

获取指定位置的元素:public E get(int index)  

设置指定位置的元素:  public E set(int index, E element)   返回该位置原来存储的元素

删除指定位置的元素 public E remove(int index)  返回被删除的元素

删除指定元素: public boolean remove(Object o)   如果指定元素在集合中存在,返回true 否则返回false

是否包指定元素:public boolean contains(Object o)  @return <tt>true</tt> if this list contains the specified element

 数组大小: public int size()

list转数组: public Object[] toArray() {   return Arrays.copyOf(elementData, size); }

 查找元素在list中的索引值: int indexOf(Object o); 返回此列表中首次出现的指定元素的索引,或如果此列表不包含该指定元素,则返回-1

三、arraylist遍历:

1. for循环

2.foreach

3.迭代器遍历 list实现了 Collection接口,collection接口实现了 Iterable 接口,因此list 可以使用Iterable接口的iterator()方法获得一个迭代器对象

 package com.iotek.list;

 import java.util.ArrayList;
import java.util.Iterator;
import java.util.List; public class ArrayListDemo { public static void main(String[] args) {
List<String> nlist = new ArrayList<String>(); // 接口的引用变量指向子类对象
nlist.add("null"); // 向容器中添加元素
nlist.add("lucy");
nlist.add("jack");
nlist.add("tom");
nlist.add("john");
nlist.add("jack");
// foreach遍历
for (String s : nlist) {
System.out.print(s + " ");
} nlist.add(1, "jay"); // 将元素“jay”插入到下标1的位置处
nlist.set(0, "chengang"); // 将下标0位置处的元素替换成“chengang” // 使用迭代器遍历
System.out.println();
Iterator<String> it = nlist.iterator();
while (it.hasNext()) { // it.hashNext()判断下一个元素是否为空
String name = it.next();
System.out.print(name + " ");
} System.out.println();
System.out.println("获取下标:" + nlist.indexOf("lucy")); // 输出元素“lucy”的索引值(在容器数组中的下标值)
System.out.println("删除元素:" + nlist.remove("jack"));// 删除,如果列表中有这个元素,返回true
System.out.println("删除指定位置元素:" + nlist.remove(0)); // 返回被删除位置的元素
System.out.println("是否包含某个元素:" + nlist.contains("chengang")); // 已删除该元素,故返回false
nlist.clear(); // 清空容器
System.out.println("判断容器是否为空:" + nlist.isEmpty()); } }

四 、indexof(Object o) 以及Contains(Object o)原理:

indexof(Object o) 方法本质上是调用对象o的equals()方法去list里查找,找到了就返回这个元素的下标,没有找到则返回-1; 

而equals 本质比较的是两个对象的引用地址,而非对象的内容

   public boolean equals(Object obj) {
return (this == obj);
}
   /**
* Returns the index of the first occurrence of the specified element
* in this list, or -1 if this list does not contain the element.
* More formally, returns the lowest index <tt>i</tt> such that
* <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
* or -1 if there is no such index.
*/
public int indexOf(Object o) {
if (o == null) {
for (int i = 0; i < size; i++)
if (elementData[i]==null)
return i;
} else {
for (int i = 0; i < size; i++)
if (o.equals(elementData[i]))
return i;
}
return -1;
}

contains方法源码如下,本质上是调用indexof来判断是否包含指定对象的,如果用contains方法判断list里面是否包含自定义的对象,那么也需要重写该对象的类的equals方法

   /**
* Returns <tt>true</tt> if this list contains the specified element.
* More formally, returns <tt>true</tt> if and only if this list contains
* at least one element <tt>e</tt> such that
* <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
*
* @param o element whose presence in this list is to be tested
* @return <tt>true</tt> if this list contains the specified element
*/
public boolean contains(Object o) {
return indexOf(o) >= 0;
}

测试示例,不重写对象的equals方法时:

 package com.iotek.list;

 import java.util.ArrayList;
import java.util.List; public class ArrayListDemo2_1 { /**
* 用ArrayList容器存放对象数据
*
* @param args
*/
public static void main(String[] args) {
List<Student> stuList = new ArrayList<Student>(); // 通过泛型限定数组元素的数据类型为Student
Student stu1 = new Student("zhangsan", 10);
Student stu2 = new Student("lisi", 20);
Student stu3 = new Student("jack", 30);
Student stu4 = new Student("mandy", 10);
Student stu5 = new Student("mary", 20); // 创建5个Student对象
stuList.add(stu1);
stuList.add(stu2);
stuList.add(stu3);
stuList.add(stu4);
stuList.add(stu5); // 将5个Student对象添加到容器中
Student stu6 = new Student("mary", 20); // 如果使用默认的equals方法,由于indexOf(Object
// o)方法的实现原理,stu6还未添加到容器中,因此找不到stu6的地址,返回-1
System.out.println("stu6下标:" + stuList.indexOf(stu6));
System.out.println("判断容器中是否包含stu6:" + stuList.contains(stu6));
System.out.println("删除stu6结果:"+stuList.remove(stu6)); // 删除stu6,不含stu6,返回false
System.out.println("stu5下标(list中包含stu5,则返回下标值,否则返回-1):"+stuList.indexOf(stu5));
System.out.println("容器中剩余元素个数为:" + stuList.size());
} } class Student {
private String name;
private int age; public Student(String name, int age) {
super();
this.name = name;
this.age = age;
} public String getName() {
return name;
} public void setName(String name) {
this.name = name;
} public int getAge() {
return age;
} public void setAge(int age) {
this.age = age;
} }

结果如下:

重写对象的equals方法后:

 package com.iotek.list;

 import java.util.ArrayList;
import java.util.List; public class ArrayListDemo2_2 { /**
* 用ArrayList容器存放对象数据
*
* @param args
*/
public static void main(String[] args) {
List<Student1> stuList = new ArrayList<Student1>(); // 通过泛型限定数组元素的数据类型为Student
Student1 stu1 = new Student1("zhangsan", 10);
Student1 stu2 = new Student1("lisi", 20);
Student1 stu3 = new Student1("jack", 30);
Student1 stu4 = new Student1("mandy", 10);
Student1 stu5 = new Student1("mary", 20);
stuList.add(stu1);
stuList.add(stu2);
stuList.add(stu3);
stuList.add(stu4);
stuList.add(stu5);
Student1 stu6 = new Student1("mary", 20);//重复元素
System.out.println("stu6下标:" + stuList.indexOf(stu6));
System.out.println("判断容器中是否包含stu6:" + stuList.contains(stu6));
System.out.println("删除stu6结果:" + stuList.remove(stu6)); // 删除stu6,不含stu6,返回false,如果包含,返回该元素
System.out.println("stu5下标:" + stuList.indexOf(stu5)); // 删除stu6后再查看,返回-1
System.out.println("容器中剩余元素个数为:" + stuList.size()); } } class Student1 {
private String name;
private int age; public Student1(String name, int age) {
super();
this.name = name;
this.age = age;
} @Override
public boolean equals(Object obj) {
if (this == obj)
return true; // 如果2个指针指向同一对象,返回true
if (obj == null)
return false;
if (getClass() != obj.getClass()) // 如果2个类型不一样,返回false
return false;
Student1 other = (Student1) obj; // 接下来将obj转换成Student对象
if (age != other.age) // 如果年龄或者姓名有一个不相等,返回false,都相等,返回true
return false;
if (name == null) {
if (other.name != null)
return false;
} else if (!name.equals(other.name))
return false;
return true;
} public String getName() {
return name;
} public void setName(String name) {
this.name = name;
} public int getAge() {
return age;
} public void setAge(int age) {
this.age = age;
} }

结果如下:

对自定义的类,需要比较该类的两个对象是否相等时,需要比较这两个对象的属性是否相等,(而不是通过比较这两个对象的引用变量,因为2个对象的引用变量的地址永远不相同,除非这两个引用变量指向了同一个对象), 那么此时,需要重写equals方法,默认的Object类中的equals方法比较的是2个对象的地址

ht-2 arrayList特性的更多相关文章

  1. 利用ArrayList对Hashtable其进行排序

    前言: 最近在使用Hashtable的时候发现一个问题:就是当你对Hashtable进行遍历的时候整个输出结果是毫无顺序的, 上网查了一下说是Hashtable有自己内部的排序机制,如果要自定义排序的 ...

  2. 重识 ArrayList

    前言 ArrayList 作为 Java 集合框架中最常用的类,在一般情况下,用它存储集合数据最适合不过.知其然知其所以然,为了能更好地认识和使用 ArrayList,本文将从下面几方面深入理解 Ar ...

  3. 常用数据结构之ArrayList

    前言 ArrayList想必是广大Java程序员开发时最常用的数据结构了,但不一定对其原理都有了解,今天我将结合ArrayList的源码对其进行讲解.本文将围绕ArrayList主要特性(包括适用场景 ...

  4. 使用NPOI导入导出标准的Excel

    关于NPOI NPOI是POI项目的.NET版本,是由@Tony Qu(http://tonyqus.cnblogs.com/)等大侠基于POI开发的,可以从http://npoi.codeplex. ...

  5. 《java JDK7 学习笔记》之Collection

    一.使用Collection 收集对象 1.认识Collection架构 Java SE提供了满足各种需求的API,在使用这些API前,建议先了解其继承与接口操作架构,才能了解何时使用哪个类,以及类之 ...

  6. 20145235 《Java程序设计》第5周学习总结

    教材学习内容总结 8.1语法与继承架构 try和catch语法,如果被try{}的语句出现了catch()的问题就执行catch{}的语句. 错误的对象都继承于java.long.Throwable, ...

  7. 20145218 《Java程序设计》第五周学习总结

    20145218 <Java程序设计>第五周学习总结 教材学习内容总结 异常 程序中总有些意想不到的状况所引发的错误,如果不对异常进行正确的处理,则可能导致程序的中断执行,造成不必要的损失 ...

  8. # 20145210 《Java程序设计》第05周学习总结

    教材学习内容总结 第八章 异常处理 8.1语法与继承架构 •使用 try.catch •Java中所有信息都会被打包为对象,如果愿意,可以尝试(try)捕捉(catch)代表错误的对象后做一些处理 • ...

  9. 学号20145220 《Java程序设计》第5周学习总结

    学号20145220 <Java程序设计>第5周学习总结 教材学习内容总结 语法与继承结构 8.1.1使用try.catch java中所有的错误都会被打包为对象,并提供了特有的语句进行处 ...

随机推荐

  1. 【转】mackbook wifi卡死未响应的问题

    原文:http://tieba.baidu.com/p/6140144143?traceid= 1. wifi未响应了,紧急处理法:打开活动监视器,搜索airportd,结束掉进程 2. 彻底解决办法 ...

  2. python生成requirements.txt 导出项目依赖

    使用pip freeze $ pip freeze > requirements.txt 这种方式是把整个环境中的包都列出来了,如果是虚拟环境可以使用. 通常情况下我们只需要导出当前项目的req ...

  3. 002-使用Spring实现读写分离(MySQL实现主从复制)

    一. 背景 一般应用对数据库而言都是“读多写少”,也就说对数据库读取数据的压力比较大主库,负责写入数据,我们称之为:写库:从库,负责读取数据,我们称之为:读库: 1. 读库和写库的数据一致:2. 写数 ...

  4. 阶段1 语言基础+高级_1-3-Java语言高级_1-常用API_1_第5节 String类_10_练习:统计输入的字符串中

    char类型在发生数学运算的时候,可以提升为int类型 这就表示char在A到Z之间的

  5. 阶段1 语言基础+高级_1-3-Java语言高级_03-常用API第二部分_第6节 基本类型包装类_1_包装类的概念

    只有这两个比较特殊

  6. c# 动态加载tlb为程序集

    private enum RegKind { RegKind_Default = , RegKind_Register = , RegKind_None = } [DllImport("ol ...

  7. 安装node和npm和vue-cli和webpack-cli

    下载node(http://nodejs.cn/download/),安装时直接下一步,安装路径不要有汉字和空格查看node和npm是否安装成功,检查版本:node -vnpm -v 安装淘宝的cnp ...

  8. Lucene的步骤

    // 1. 采集数据 BookDao bookDao = new BookDaoImpl(); List<Book> bookList = bookDao.queryBookList(); ...

  9. 最长k可重线段集问题【费用流】【优先队列Dijkstra费用流】

    题目链接 与最长K可重区间问题一样的解法,但是这道题却有很多需要注意的地方,譬如就是精度问题,一开始没考虑到sprt()里面的乘会爆了精度,然后交上去竟然是TLE,然后找的原因方向也没对,最后TLE了 ...

  10. 第一章:Java语言概述与环境开发

    1.计算机高级语言按程序的执行方式可以分为编译型和解释型两种: 2.JAVA程序的执行过程必须经过先编译后解释两个步骤: 3.JAVA语言里负责执行字节码文件的是JAVA虚拟机 (Java Virtu ...