rspec/rules/S4035/csharp/rule.adoc

111 lines
2.9 KiB
Plaintext
Raw Normal View History

When a class implements the `IEquatable<T>` interface, it enters a contract that, in effect, states "I know how to compare two instances of type T or any type derived from T for equality.". However if that class is derived, it is very unlikely that the base class will know how to make a meaningful comparison. Therefore that implicit contract is now broken.
2021-04-28 16:49:39 +02:00
Alternatively `IEqualityComparer<T>` provides a safer interface and is used by collections or `Equals` could be made `virtual`.
2021-04-28 16:49:39 +02:00
2022-03-04 14:49:40 +01:00
This rule raises an issue when an unsealed, `public` or `protected` class implements `IEquitable<T>` and the `Equals` is neither `virtual` nor `abstract`.
2021-04-28 16:49:39 +02:00
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
2022-02-04 17:28:24 +01:00
[source,csharp]
2021-04-28 16:49:39 +02:00
----
using System;
namespace MyLibrary
{
public class Base : IEquatable<Base> // Noncompliant
2021-04-28 16:49:39 +02:00
{
public bool Equals(Base other)
2021-04-28 16:49:39 +02:00
{
if (other == null) { return false; }
2021-04-28 16:49:39 +02:00
// do comparison of base properties
return true;
2021-04-28 16:49:39 +02:00
}
public override bool Equals(object other) => Equals(other as Base);
2021-04-28 16:49:39 +02:00
}
class A : Base
{
public bool Equals(A other)
2021-04-28 16:49:39 +02:00
{
if (other == null) { return false; }
2021-04-28 16:49:39 +02:00
// do comparison of A properties
return base.Equals(other);
}
public override bool Equals(object other) => Equals(other as A);
2021-04-28 16:49:39 +02:00
}
class B : Base
{
public bool Equals(B other)
2021-04-28 16:49:39 +02:00
{
if (other == null) { return false; }
2021-04-28 16:49:39 +02:00
// do comparison of B properties
return base.Equals(other);
2021-04-28 16:49:39 +02:00
}
public override bool Equals(object other) => Equals(other as B);
2021-04-28 16:49:39 +02:00
}
internal class Program
{
static void Main(string[] args)
{
A a = new A();
B b = new B();
Console.WriteLine(a.Equals(b)); // This calls the WRONG equals. This causes Base.Equals(Base)
// to be called which only compares the properties in Base and ignores the fact that
// a and b are different types. In the working example A.Equals(Object) would have been
// called and Equals would return false because it correctly recognizes that a and b are
// different types. If a and b have the same base properties they will be returned as equal.
}
2021-04-28 16:49:39 +02:00
}
}
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
2022-02-04 17:28:24 +01:00
[source,csharp]
2021-04-28 16:49:39 +02:00
----
using System;
namespace MyLibrary
{
public sealed class Foo : IEquatable<Foo>
{
public bool Equals(Foo other)
{
// Your code here
}
}
}
----
2021-04-28 16:49:39 +02:00
== See
https://msdn.microsoft.com/en-us/library/ms132151(v=vs.110).aspx[IEqualityComparer<T> Interface]
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
include::highlighting.adoc[]
'''
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]