将对象放在hashset中时
1 先调用hashcode获得一个散列的数,通过内部hash算法,计算出存放的位置,
2 在该位置检查是否与该位置的对象相等(调用equals方法),如果等则不放入该对象,如果不等则将该对象放在该位置的第一个
输出为:
hashcode
hashcode
equals
hashcode
equals
hashcode
equals
hashcode
equals
hashcode
equals
hashcode
equals
hashcode
equals
hashcode
equals
hashcode
equals
1//只有一个元素
0//第一个元素
List、map加入对象时不会调用着两个方法
1 先调用hashcode获得一个散列的数,通过内部hash算法,计算出存放的位置,
2 在该位置检查是否与该位置的对象相等(调用equals方法),如果等则不放入该对象,如果不等则将该对象放在该位置的第一个
java 代码
- public class A {
- private String name;
- /**
- * @return the name
- */
- public String getName() {
- return name;
- }
- /**
- * @param name
- * the name to set
- */
- public void setName(String name) {
- this.name = name;
- }
- /*
- * (non-Javadoc)
- *
- * @see java.lang.Object#equals(java.lang.Object)
- */
- @Override
- public boolean equals(Object obj) {
- System.out.println("equals");
- return true;
- }
- /*
- * (non-Javadoc)
- *
- * @see java.lang.Object#hashCode()
- */
- @Override
- public int hashCode() {
- System.out.println("hashcode");
- return 1;
- }
- }
java 代码
- public void testHashA() {
- A a = new A();
- Set l = new HashSet();
- for (int i = 0; i < 10; i++) {
- a = new A();
- a.setName(String.valueOf(i));
- l.add(a);
- }
- System.out.println(l.size());
- for (Iterator iter = l.iterator(); iter.hasNext();) {
- A element = (A) iter.next();
- System.out.println(element.getName());
- }
- }
hashcode
hashcode
equals
hashcode
equals
hashcode
equals
hashcode
equals
hashcode
equals
hashcode
equals
hashcode
equals
hashcode
equals
hashcode
equals
1//只有一个元素
0//第一个元素
List、map加入对象时不会调用着两个方法