A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 董将 中级黑马   /  2012-12-19 21:55  /  1134 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

import java.util.*;

/*
|--Set:它对元素的存取是无序的。不可以存入重复元素。
                |--HashSet:底层数据结构是哈希表。对于判断该集合元素是否重复,
                                        通过hashCode方法,equals方法方法来保证元素的唯一性。
                                        先会判断两个对象hashCode值,只有哈希值相同的情况下,才会判断equals方法。
                                        不同步的。
                                       
               
*/
class  HashSetDemo
{
        public static void main(String[] args)
        {
                HashSet hs = new HashSet();

               
                hs.add(new Student("zhangsan",30));
                hs.add(new Student("lisi",34));
                hs.add(new Student("wangwu",22));
                hs.add(new Student("zhaoliu",32));
                hs.add(new Student("zhangsan",30));


                Iterator it = hs.iterator();

                while(it.hasNext())
                {
                        System.out.println(it.next());
                }
               
        }
}

class Student
{
        private String name;
        private int age;
        Student(String name,int age)
        {
                this.name = name;
                this.age = age;
        }
        /*public int hashCode()
        {
                System.out.println(this+"----hashCode");
                return this.name.hashCode()+age*38;
                //return 1;
        }
        public boolean equals(Object obj)
        {
                System.out.println(this+"----equals");
                Student s = (Student)obj;
                /*
                if(this.name.equals(s.name) && this.age==s.age))
                        return true;
                return false;
                */
                /*return this.name.equals(s.name) && this.age==s.age;
        }
        public String toString()
        {
                return name+":"+age;
        }
        */
}

1 个回复

倒序浏览
值得学习ing!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马