Java中ArrayList HashSet的使用 以及HashCode的用处

 

Java.uitl包中的 ArrayList   和HashSet类  我们都用过,但是我们可能都没有去,深入研究过其内部的结构 。都是实现了Collection的类 ,Collection是一个标准

 

ArrayList

  其实就相当与一个动态数组,我们每增加一个元素,他啊都会将元素增加到ArrayList中并且为这个元素分配指定索引 就像一个数组一样 。这个索引就是从0开始 1 2  34 。。。。

HashSet

 看到Hash我们就知道,它的内部结构了,学过数据结构我们都知道hash表是如何插入元素 和 搜索元素,利用hash表我们可以快速的查找元素,而不用像数组一样进行遍历 。

在HashSet中 我们插入元素的时候 ,他会首先判断HashSet中否有和这个元素相等的元素,如果有 那么就不插入 。所以说HashSet中没有重复元素。

HashSet可以实现元素的快速查找,这是利用hashCode来实现的 。

HashCode是怎样获得的呢?  在java中 如果我们不覆盖父类的 hashCode方法 那么hashCode是根据对象的内存地址计算而来。  当然我们也可以重载hashCode方法 。

在哈希表中,比如说有1-31 的索引 ,我们不是按照常规插入一个元素 索引增加一个,而是根据对象的hashCode来计算这个对象应该在表的哪个位置 .然后就把这个元素插入到这个索引对应的区域。对应的查找的时候也是这样,是根据 对象的hashCode直接 查找指定索引对应的元素,这样大大提高了速度 。

如果我们自己重写了 hashCode() 我们不应该修改产生hashCode的字段,否则的话可能导致内存的泄漏、

看下面几个程序的结果: 有一个类

class MyTest
{
 int x;
 int y;
    public  MyTest(int x,int y)
    {
     this.x=x ;
     this.y=y ;
    }
}

1、

package me.test;
import java.util.*;
public class ReflectTest2
{
   public static void main(String[]args)
   {
    //面向父类的编程或者面向接口编程
    Collection c1=new ArrayList() ;  //ArrayList类是一个数组  实现了Collection接口
       MyTest t1=new MyTest(2,2)  ;
       MyTest t2=new MyTest(3,4)  ;
       MyTest t3=new MyTest(2,2)  ;
       c1.add(t1) ;
       c1.add(t2) ;
       c1.add(t3) ;
       c1.add(t1) ;
       System.out.println(c1.size()); 
   }
  
}

 

2、

package me.test;
import java.util.*;
public class ReflectTest2
{
   public static void main(String[]args)
   {
    //面向父类的编程或者面向接口编程
    Collection c1=new HashSet() ;
       MyTest t1=new MyTest(2,2)  ;
       MyTest t2=new MyTest(3,4)  ;
       MyTest t3=new MyTest(2,2)  ;
       c1.add(t1) ;
       c1.add(t2) ;
       c1.add(t3) ;
       c1.add(t1) ;
       System.out.println(c1.size()); 
   }
  
}

3、

package me.test;
import java.util.*;
public class ReflectTest2
{
   public static void main(String[]args)
   {
    //面向父类的编程或者面向接口编程
    Collection c1=new HashSet() ;
       MyTest t1=new MyTest(2,2)  ;
       MyTest t2=new MyTest(3,4)  ;
       MyTest t3=new MyTest(2,2)  ;
       c1.add(t1) ;
       c1.add(t2) ;
       c1.add(t3) ;
       c1.add(t1) ;
       System.out.println(c1.size()); 
   }
  
}
class MyTest
{
 int x;
 int y;
    public  MyTest(int x,int y)
    {
     this.x=x ;
     this.y=y ;
    }
 @Override
 public int hashCode() {
  final int prime = 31;
  int result = 1;
  result = prime * result + x;
  result = prime * result + y;
  return result;
 }
 @Override
 public boolean equals(Object obj) {
  if (this == obj)
   return true;
  if (obj == null)
   return false;
  if (getClass() != obj.getClass())
   return false;
  MyTest other = (MyTest) obj;
  if (x != other.x)
   return false;
  if (y != other.y)
   return false;
  return true;
 }
}

 

4、

package me.test;
import java.util.*;
public class ReflectTest2
{
   public static void main(String[]args)
   {
    //面向父类的编程或者面向接口编程
    Collection c1=new HashSet() ;
       MyTest t1=new MyTest(2,2)  ;
       MyTest t2=new MyTest(3,4)  ;
       MyTest t3=new MyTest(2,2)  ;
       c1.add(t1) ;
       c1.add(t2) ;
       c1.add(t3) ;
       c1.add(t1) ;
       t1.y=0;
       c1.remove(t1);
       System.out.println(c1.size()); 
   }
  
}
class MyTest
{
 int x;
 int y;
    public  MyTest(int x,int y)
    {
     this.x=x ;
     this.y=y ;
    }
 @Override
 public int hashCode() {
  final int prime = 31;
  int result = 1;
  result = prime * result + x;
  result = prime * result + y;
  return result;
 }
 @Override
 public boolean equals(Object obj) {
  if (this == obj)
   return true;
  if (obj == null)
   return false;
  if (getClass() != obj.getClass())
   return false;
  MyTest other = (MyTest) obj;
  if (x != other.x)
   return false;
  if (y != other.y)
   return false;
  return true;
 }
}

时间: 2024-10-28 13:26:38

Java中ArrayList HashSet的使用 以及HashCode的用处的相关文章

Java中ArrayList的使用方法简单介绍_java

ArrayList没有封装好的去重方法,比如对于一个[2, 5, 2, 3, 2, 4]的ArrayList,我要去除其中的重复的元素, 我也不想把语句也这么长,也不想用for循环的方法去重,那么可以先考虑把ArrayList转化为一个临时的HashSet,再把这个临时的HashSet转化回ArrayList,因为HashSet里面的元素是不可重复的嘛!至于什么是ArrayList与HashSet,在<详解java中的Collections类>已经说得很清楚了,这里不再赘述.  你可以这样写:

java中ArrayList 、LinkList的区别分析_java

1.ArrayList是实现了基于动态数组的数据结构,LinkedList基于链表的数据结构.      2.对于随机访问get和set,ArrayList优于LinkedList,因为ArrayList可以随机定位,而LinkedList要移动指针一步一步的移动到节点处.(参考数组与链表来思考)     3.对于新增和删除操作add和remove,LinedList比较占优势,只需要对指针进行修改即可,而ArrayList要移动数据来填补被删除的对象的空间. ArrayList和LinkedL

Java中ArrayList类的使用方法_java

Java中ArrayList类的用法 1.什么是ArrayList ArrayList就是传说中的动态数组,用MSDN中的说法,就是Array的复杂版本,它提供了如下一些好处: 动态的增加和减少元素 实现了ICollection和IList接口 灵活的设置数组的大小 2.如何使用ArrayList 最简单的例子: ArrayList List = new ArrayList(); for( int i=0;i <10;i++ ) //给数组增加10个Int元素 List.Add(i); //..

Java中Object类的equals()和hashCode()方法深入解析

1.equals() 在初学Java的时候,很多人会说在比较对象的时候,==是比较地址,equals()是比较对象的内容,谁说的? 看看equals()方法在Object类中的定义: public boolean equals(Object obj){ return (this == obj); } 这是比较内容么?明显是比较指针(地址)么... 但是为什么会有equals是比较内容的这种说法呢? 因为在String.Double等封装类中,已经重载(overriding)了Object类的eq

Java中ArrayList和LinkedList的遍历与性能分析_java

前言 通过本文你可以了解List的五种遍历方式及各自性能和foreach及Iterator的实现,加深对ArrayList和LinkedList实现的了解.下面来一起看看吧. 一.List的五种遍历方式 1.for each循环 List<Integer> list = new ArrayList<Integer>(); for (Integer j : list) { // use j } 2.显示调用集合迭代器 List<Integer> list = new Ar

分析Java中ArrayList与LinkedList列表结构的源码_java

一.ArrayList源码分析(JDK7) ArrayList内部维护了一个动态的Object数组,ArrayList的动态增删就是对这个对组的动态的增加和删除. 1.ArrayList构造以及初始化 ArrayList实例变量 //ArrayList默认容量 private static final int DEFAULT_CAPACITY = 10; //默认空的Object数组, 用于定义空的ArrayList private static final Object[] EMPTY_ELE

Java中arraylist是否contains某元素的问题

问题描述 重写了OneElem中equals方法使得名字相同的话就判定arraylist中contains该元素public class Test { public static void main(String[] args) { ArrayList<OneElem> oe=new ArrayList<OneElem>(); OneElem o; for(int i=0; i<3; i++){ o=new OneElem("one"); if(oe.co

Java中ArrayList和LinkedList区别

一般大家都知道ArrayList和LinkedList的大致区别: 1.ArrayList是实现了基于动态数组的数据结构,LinkedList基于链表的数据结构. 2.对于随机访问get和set,ArrayList觉得优于LinkedList,因为LinkedList要移动指针. 3.对于新增和删除操作add和remove,LinedList比较占优势,因为ArrayList要移动数据. ArrayList和LinkedList是两个集合类,用于存储一系列的对象引用(references).例如

java中arraylist对象排序程序

 代码如下 复制代码   import java.util.ArrayList;    import java.util.Collection;    import java.util.Collections;    import java.util.Comparator;          public class SortTwo implements Comparator {    //排序字段    private String sort1;    //排序方式    private in