Java 集合类学习之HashSet

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 集合类学习之HashSet相关的知识,希望对你有一定的参考价值。

package com.fish.set;
import java.util.HashSet;
import java.util.Set;
/*
集合 的体系:
------------| Collection 单例集合的根接口
----------------| List  如果是实现了List接口的集合类,具备的特点: 有序,可重复。 
-------------------| ArrayList  ArrayList 底层是维护了一个Object数组实现的。 特点: 查询速度快,增删慢。
-------------------| LinkedList LinkedList 底层是使用了链表数据结构实现的, 特点: 查询速度慢,增删快。
-------------------| Vector(了解即可)  底层也是维护了一个Object的数组实现的,实现与ArrayList是一样的,但是Vector是线程安全的,操作效率低。
----------------| Set  如果是实现了Set接口的集合类,具备的特点: 无序,不可重复。
无序: 添加元素 的顺序与元素出来的顺序是不一致的。
*/
public class Demo1 {
    public static void main(String[] args) {
    Set set = new HashSet();
    set.add("王五");
    set.add("张三");
    set.add("李四"); 
    System.out.println("添加成功吗?"+set.add("李四"));
    
    System.out.println(set);
}
}


package com.fish.set;
import java.util.HashSet;
import javax.print.attribute.HashAttributeSet;
/*
集合 的体系:
------------| Collection 单例集合的根接口
----------------| List  如果是实现了List接口的集合类,具备的特点: 有序,可重复。 
-------------------| ArrayList  ArrayList 底层是维护了一个Object数组实现的。 特点: 查询速度快,增删慢。
-------------------| LinkedList LinkedList 底层是使用了链表数据结构实现的, 特点: 查询速度慢,增删快。
-------------------| Vector(了解即可)  底层也是维护了一个Object的数组实现的,实现与ArrayList是一样的,但是Vector是线程安全的,操作效率低。
----------------| Set  如果是实现了Set接口的集合类,具备的特点: 无序,不可重复。
-------------------| HashSet  底层是使用了哈希表来支持的,特点: 存取速度快. 

hashSet的实现原理:
往Haset添加元素的时候,HashSet会先调用元素的hashCode方法得到元素的哈希值 ,
然后通过元素 的哈希值经过移位等运算,就可以算出该元素在哈希表中 的存储位置。

情况1: 如果算出元素存储的位置目前没有任何元素存储,那么该元素可以直接存储到该位置上。
情况2: 如果算出该元素的存储位置目前已经存在有其他的元素了,那么会调用该元素的equals方法与该位置的元素再比较一次
,如果equals返回的是true,那么该元素与这个位置上的元素就视为重复元素,不允许添加,如果equals方法返回的是false,那么该元素运行 添加。
-------------------| TreeSet  



*/
class Person{
    int id;
    String name;
    public Person(int id, String name) {
        super();
        this.id = id;
        this.name = name;
    }
    @Override
    public String toString() {
        return "{ 编号:"+ this.id+" 姓名:"+ this.name+"}";
    }
    @Override
    public int hashCode() {
        System.out.println("=======hashCode=====");
        return this.id;
    }
        @Override
        public boolean equals(Object obj) {
            System.out.println("======equals======");
            Person p = (Person)obj;
            return this.id==p.id;
        }
}
public class Demo2 {
    public static void main(String[] args) {
        /*
        HashSet set = new HashSet();
        set.add("狗娃");
        set.add("狗剩");
        set.add("铁蛋");
        System.out.println("集合的元素:"+ set);
        */
        
        HashSet set = new HashSet();
        set.add(new Person(110,"狗娃"));
        set.add(new Person(220,"狗剩"));
        set.add(new Person(330,"铁蛋"));
        //在现实生活中只要编号一致就为同一个人.
        System.out.println("添加成功吗?"+set.add(new Person(110,"狗娃")));
        
        System.out.println("集合的元素:"+set);
        }
}


package com.fish.set;
import java.util.HashSet;
import java.util.Scanner;
/*
 需求: 接受键盘录入用户名与密码,如果用户名与密码已经存在集合中,那么就是视为重复元素,不允许添加到HashSet中。
 
 */
class User{


    String userName;
    String password;
    
    public User(String userName, String password) {
        super();
        this.userName = userName;
        this.password = password;
    }
    @Override
    public String toString() {
        return "{ 用户名:"+this.userName+" 密码:"+ this.password+"}";
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result
        + ((password == null) ? 0 : password.hashCode());
        result = prime * result
        + ((userName == null) ? 0 : userName.hashCode());
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        User other = (User) obj;
        if (password == null) {
            if (other.password != null)
            return false;
        } else if (!password.equals(other.password))
            return false;
        if (userName == null) {
            if (other.userName != null)
                return false;
        } else if (!userName.equals(other.userName))
            return false;
        
        return true;
    }
    /*@Override
    public boolean equals(Object obj) {
        User user = (User)obj;
        return this.userName.equals(user.userName)&&this.password.equals(user.password);
    }*/
    
    
    /*@Override
    public int hashCode() { //  abc 123   , 123 abc
        return userName.hashCode()+password.hashCode();
    }*/
}


public class Demo3 {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        HashSet set = new HashSet();
       
        while(true){
            System.out.println("请输入用户名:");
            String userName = scanner.next();
            System.out.println("请输入密码:");
            String password = scanner.next();
            /
            /创建一个对象
            User user = new User(userName, password);
            
            if(set.add(user)){
                System.out.println("注册成功...");
                System.out.println("当前的用户有:"+ set);
            }else{
                System.out.println("注册失败...");
            }
        }
    }
}


package com.fish.set;
public class Demo4 {
    public static void main(String[] args) {
        String str1 = "hello";
        String str2 = new String("hello");
        System.out.println("两个是同一个对象吗?"+(str1==str2));
        System.out.println("str1的hashCode:"+ str1.hashCode());
        System.out.println("str2的hashCode:"+ str2.hashCode());
        /* 
         HashCode默认情况下表示的是内存地址,String 类已经重写了Object的hashCode方法了。
         注意: 如果两个字符串的内容一致,那么返回的hashCode 码肯定也会一致的。 
         */
    }
}

/*
两个是同一个对象吗?false
str1的hashCode:99162322
str2的hashCode:99162322
*/


本文出自 “小鱼的博客” 博客,谢绝转载!

以上是关于Java 集合类学习之HashSet的主要内容,如果未能解决你的问题,请参考以下文章

Java 集合类学习之ArrayList

Java 集合类学习之LinkedList

Java 集合类学习之HashMap

Java 集合类学习之Map

Java并发多线程编程——集合类线程不安全之HashSet的示例及解决方案

Java集合Collection 体系集合详解(ArrayList,LinkedList,HashSet,TreeSet...)