My understanding of these three was:
.Equals()
tests for data equality (for the lack of a better description). .Equals()
can return True for different instances of the same object, and this is the most commonly overridden method.
.ReferenceEquals()
tests whether or not two objects are the same instance and cannot be overridden.
==
is the same as the ReferenceEquals()
by default, but this CAN be overridden.
But C# station states:
In the object class, the
Equals
andReferenceEquals
methods are semantically equivalent, except that theReferenceEquals
works only on object instances. TheReferenceEquals
method is static.
Now I don't get it. Can anyone shed some light on this?
C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...
In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.
C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.
C is more difficult to learn than JavaScript, but it's a valuable skill to have because most programming languages are actually implemented in C. This is because C is a “machine-level” language. So learning it will teach you how a computer works and will actually make learning new languages in the future easier.
The source of your confusion appears to be that there is a typo in the extract from C# station, which should read: "... except that the Equals works only on object instances. The ReferenceEquals method is static."
You are loosely correct about the differences in the semantic meanings of each (although "different instances of the same object" seems a little confused, it should probably read "different instances of the same type) and about which can be overridden.
If we leave that aside, let's deal with the last bit of your question, i.e. how they work with plainSystem.Object
instances and System.Object
references (we need both to dodge the non-polymorphic nature of ==
). Here, all three operations will work equivalentally, but with a caveat:Equals
cannot be invoked onnull
.
Equals
is an instance method that takes one parameter (which can benull
). Since it is an instance method (must be invoked on an actual object), it can't be invoked on a null
-reference.
ReferenceEquals
is a static method that takes two parameters, either / both of which can be null
. Since it is static (not associated with an object instance), it will not throw aNullReferenceException
under any circumstances.
==
is an operator, that, in this case (object
), behaves identically to ReferenceEquals
. It will not throw aNullReferenceException
either.
To illustrate:
object o1 = null; object o2 = new object(); //Technically, these should read object.ReferenceEquals for clarity, but this is redundant. ReferenceEquals(o1, o1); //true ReferenceEquals(o1, o2); //false ReferenceEquals(o2, o1); //false ReferenceEquals(o2, o2); //true o1.Equals(o1); //NullReferenceException o1.Equals(o2); //NullReferenceException o2.Equals(o1); //false o2.Equals(o2); //true
Have a look at this MSDN article on the subject.
I think the pertinent points are:
To check for reference equality, use ReferenceEquals. To check for value equality, use Equals or Equals.
By default, the operator == tests for reference equality by determining if two references indicate the same object, so reference types do not need to implement operator == in order to gain this functionality. When a type is immutable, meaning the data contained in the instance cannot be changed, overloading operator == to compare value equality instead of reference equality can be useful because, as immutable objects, they can be considered the same as long as they have the same value.
Hope this helps!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With