What is the difference between identity and equality in OOP?
|
|
|||||
|
|
|
basically,
for example
a is equal but not identical to b.
x is identical to y. of course, two identical objects are always equal. in java, equality is defined by the equals method. keep in mind, if you implement equals you must also implement hashCode. |
||||
|
|
|
Identity means it is the same object instance while equality means the objects you compare are to different instances of an object but happen to contain the same data. Illustration (in java)
So a and b are different instances (different allocations in memory) but on the "data" level they are equal. |
||
|
|
|
|
Identity determines whether two objects share the same memory address. Equality determines if two object contain the same state. If two object are identical then they are also equal but just because two objects are equal dies not mean that they share the same memory address. There is a special case for Strings but that is off topic and you'll need to ask someone else about how that works exactly ;-) |
||||
|
|
|
In Java and similar languages which 'leak' the abstraction of a reference of an object, you can test whether two references refer to the same object. If they refer to the same object, then the references are identical. In Java, this is the There is also an Purer object-oriented languages do not have an identity comparison, as client code generally shouldn't care whether or not two objects have the same memory address. If objects represent the same real-world entity, then that is better modelled using some ID or key value rather than identity, which then becomes part of the equals contract. Not relying on the memory address of the object to represent real-world identity simplifies caching and distributed behaviour, and suppressing |
||
|
|
|
|
Think about the words "identical" and "equivalent". If two things are identical, they have the same identity; they are same thing. If they are equivalent, one can be substituted for the other without affecting the outcome; they have the same behavior and properties. |
||
|
|
|
|
Identity: two pointers to the same network connection. Equality: two strings with the same content. |
||
|
|
|
|
i found an excellent article on this http://www.cs.cornell.edu/courses/cs211/2006sp/Lectures/L14-Comparison/L14cs211sp06.pdf Quote |
||
|
|
|
|
Identity concept is quite philosophical, that's why you shouldn't reconduce it just to references. You can say that two identities are the same if a change to the first is reflected on the second and vice-versa. Of course this includes also sharing the same memory address but in general while identity is related to the attributes of the object, equality is used to check whenever two objects are identical, but this doesn't include identity. The viceversa is quite obvious, if two items have the same identity they are also equal (in equality terms of being interchangeable). |
||
|
|
|
|
Example:
|
|||
|
|
|
|
Identity: Two references to the same object ( Equality: The method In theory it's possible to override a method
|
|||
|
|
