Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I saw the following program on the internet

public class Test1{
 public static void main(String[] args)
 {
 Integer int1 = new Integer(10);
 Vector vec1 = new Vector();
 LinkedList list = new LinkedList();
 vec1.add(int1);
 list.add(int1);
 if(vec1.equals(list)) System.out.println("equal");
 else  System.out.println("not equal");
  }

}

The answer it print is "equal".

How it is possible?

Thanks

Dilip

share|improve this question

6 Answers

up vote 8 down vote accepted

Because both a LinkedList and Vector implement List#equals()

Returns true if and only if the specified object is also a list, both lists have the same size, and all corresponding pairs of elements in the two lists are equal. (Two elements e1 and e2 are equal if (e1==null ? e2==null : e1.equals(e2)).) In other words, two lists are defined to be equal if they contain the same elements in the same order. This definition ensures that the equals method works properly across different implementations of the List interface.

Specifically, here is the exact reason for this behavior.

This definition ensures that the equals method works properly across different implementations of the List interface.

share|improve this answer

Here's the API doc for Vector.equals() (other List implementations behave similarly):

Compares the specified Object with this Vector for equality. Returns true if and only if the specified Object is also a List, both Lists have the same size, and all corresponding pairs of elements in the two Lists are equal.

share|improve this answer
Thank you so much for your all answers – Dilip Ganesh Sep 15 '11 at 13:51

See the javadoc for equals on java.util.Vector:

  /**
     * Compares the specified Object with this Vector for equality.  Returns
     * true if and only if the specified Object is also a List, both Lists
     * have the same size, and all corresponding pairs of elements in the two
     * Lists are <em>equal</em>.  (Two elements {@code e1} and
     * {@code e2} are <em>equal</em> if {@code (e1==null ? e2==null :
     * e1.equals(e2))}.)  In other words, two Lists are defined to be
     * equal if they contain the same elements in the same order.
     *
     * @param o the Object to be compared for equality with this Vector
     * @return true if the specified Object is equal to this Vector
     */

The equals method is checking that the lists have the same contents in the same order.

share|improve this answer

http://download.oracle.com/javase/1.4.2/docs/api/java/util/Vector.html#equals%28java.lang.Object%29

Definition of equals implementation on Vector:

Compares the specified Object with this Vector for equality. Returns true if and only if the specified Object is also a List, both Lists have the same size, and all corresponding pairs of elements in the two Lists are equal. (Two elements e1 and e2 are equal if (e1==null ? e2==null : e1.equals(e2)).) In other words, two Lists are defined to be equal if they contain the same elements in the same order.

Both Vector and LinkedList are descendents of AbstractList (in the case of LinkedList, there's an extra class in between I believe). AbstractList objects can be compared to one another.

share|improve this answer

It is because they are both lists.

Vector and LinkedList both inherit ultimately from AbstractList.

See the implementation of equals on line 512 of the source code.

share|improve this answer

That's because both LinkedList and Vector internally call the same method java.util.AbstractList.equals() to do the comparison.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.