Object.Equals メソッド
定義
2 つのオブジェクト インスタンスが等しいかどうかを判断します。Determines whether two object instances are equal.
オーバーロード
Equals(Object) |
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判定します。Determines whether the specified object is equal to the current object. |
Equals(Object, Object) |
指定されたインスタンスが等しいかどうかを判断します。Determines whether the specified object instances are considered equal. |
Equals(Object)
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判定します。Determines whether the specified object is equal to the current object.
public:
virtual bool Equals(System::Object ^ obj);
public virtual bool Equals (object obj);
abstract member Equals : obj -> bool
override this.Equals : obj -> bool
Public Overridable Function Equals (obj As Object) As Boolean
パラメーター
- obj
- Object
現在のオブジェクトと比較するオブジェクト。The object to compare with the current object.
戻り値
指定したオブジェクトが現在のオブジェクトと等しい場合は true
。それ以外の場合は false
。true
if the specified object is equal to the current object; otherwise, false
.
例
次の例は、Equals メソッドをオーバーライドして値の等価性を提供する Point
クラスと、Point
から派生した Point3D
クラスを示しています。The following example shows a Point
class that overrides the Equals method to provide value equality, and a Point3D
class that is derived from Point
. 値が等しいかどうかをテストするために Object.Equals(Object) Point
オーバーライドされるため、Object.Equals(Object) メソッドは呼び出されません。Because Point
overrides Object.Equals(Object) to test for value equality, the Object.Equals(Object) method is not called. ただし、Point3D.Equals
は Point.Equals
を呼び出します。 Point
は、値の等価性を提供する方法で Object.Equals(Object) を実装するためです。However, Point3D.Equals
calls Point.Equals
because Point
implements Object.Equals(Object) in a manner that provides value equality.
using System;
class Point
{
protected int x, y;
public Point() : this(0, 0)
{ }
public Point(int x, int y)
{
this.x = x;
this.y = y;
}
public override bool Equals(Object obj)
{
//Check for null and compare run-time types.
if ((obj == null) || ! this.GetType().Equals(obj.GetType()))
{
return false;
}
else {
Point p = (Point) obj;
return (x == p.x) && (y == p.y);
}
}
public override int GetHashCode()
{
return (x << 2) ^ y;
}
public override string ToString()
{
return String.Format("Point({0}, {1})", x, y);
}
}
sealed class Point3D: Point
{
int z;
public Point3D(int x, int y, int z) : base(x, y)
{
this.z = z;
}
public override bool Equals(Object obj)
{
Point3D pt3 = obj as Point3D;
if (pt3 == null)
return false;
else
return base.Equals((Point)obj) && z == pt3.z;
}
public override int GetHashCode()
{
return (base.GetHashCode() << 2) ^ z;
}
public override String ToString()
{
return String.Format("Point({0}, {1}, {2})", x, y, z);
}
}
class Example
{
public static void Main()
{
Point point2D = new Point(5, 5);
Point3D point3Da = new Point3D(5, 5, 2);
Point3D point3Db = new Point3D(5, 5, 2);
Point3D point3Dc = new Point3D(5, 5, -1);
Console.WriteLine("{0} = {1}: {2}",
point2D, point3Da, point2D.Equals(point3Da));
Console.WriteLine("{0} = {1}: {2}",
point2D, point3Db, point2D.Equals(point3Db));
Console.WriteLine("{0} = {1}: {2}",
point3Da, point3Db, point3Da.Equals(point3Db));
Console.WriteLine("{0} = {1}: {2}",
point3Da, point3Dc, point3Da.Equals(point3Dc));
}
}
// The example displays the following output:
// Point(5, 5) = Point(5, 5, 2): False
// Point(5, 5) = Point(5, 5, 2): False
// Point(5, 5, 2) = Point(5, 5, 2): True
// Point(5, 5, 2) = Point(5, 5, -1): False
Class Point
Protected x, y As Integer
Public Sub New()
Me.x = 0
Me.y = 0
End Sub
Public Sub New(x As Integer, y As Integer)
Me.x = x
Me.y = y
End Sub
Public Overrides Function Equals(obj As Object) As Boolean
' Check for null and compare run-time types.
If obj Is Nothing OrElse Not Me.GetType().Equals(obj.GetType()) Then
Return False
Else
Dim p As Point = DirectCast(obj, Point)
Return x = p.x AndAlso y = p.y
End If
End Function
Public Overrides Function GetHashCode() As Integer
Return (x << 2) XOr y
End Function
Public Overrides Function ToString() As String
Return String.Format("Point({0}, {1})", x, y)
End Function
End Class
Class Point3D : Inherits Point
Private z As Integer
Public Sub New(ByVal x As Integer, ByVal y As Integer, ByVal z As Integer)
MyBase.New(x, y)
Me.z = Z
End Sub
Public Overrides Function Equals(ByVal obj As Object) As Boolean
Dim pt3 As Point3D = TryCast(obj, Point3D)
If pt3 Is Nothing Then
Return False
Else
Return MyBase.Equals(CType(pt3, Point)) AndAlso z = pt3.Z
End If
End Function
Public Overrides Function GetHashCode() As Integer
Return (MyBase.GetHashCode() << 2) XOr z
End Function
Public Overrides Function ToString() As String
Return String.Format("Point({0}, {1}, {2})", x, y, z)
End Function
End Class
Module Example
Public Sub Main()
Dim point2D As New Point(5, 5)
Dim point3Da As New Point3D(5, 5, 2)
Dim point3Db As New Point3D(5, 5, 2)
Dim point3Dc As New Point3D(5, 5, -1)
Console.WriteLine("{0} = {1}: {2}",
point2D, point3Da, point2D.Equals(point3Da))
Console.WriteLine("{0} = {1}: {2}",
point2D, point3Db, point2D.Equals(point3Db))
Console.WriteLine("{0} = {1}: {2}",
point3Da, point3Db, point3Da.Equals(point3Db))
Console.WriteLine("{0} = {1}: {2}",
point3Da, point3Dc, point3Da.Equals(point3Dc))
End Sub
End Module
' The example displays the following output
' Point(5, 5) = Point(5, 5, 2): False
' Point(5, 5) = Point(5, 5, 2): False
' Point(5, 5, 2) = Point(5, 5, 2): True
' Point(5, 5, 2) = Point(5, 5, -1): False
Point.Equals
メソッドは、obj
引数がnullでないこと、およびこのオブジェクトと同じ型のインスタンスを参照していることを確認します。The Point.Equals
method checks to make sure that the obj
argument is not null and that it references an instance of the same type as this object. いずれかのチェックが失敗した場合、メソッドは false
を返します。If either check fails, the method returns false
.
Point.Equals
メソッドは、GetType メソッドを呼び出して、2つのオブジェクトの実行時の型が同一かどうかを判断します。The Point.Equals
method calls the GetType method to determine whether the run-time types of the two objects are identical. メソッドが、Visual Basic 内のフォーム obj is Point
C#または TryCast(obj, Point)
のチェックを使用した場合、obj
と現在のインスタンスが同じ実行時の型ではない場合でも、Point
が obj
の派生クラスのインスタンスである場合に、このチェックによって true
が返されます。If the method used a check of the form obj is Point
in C# or TryCast(obj, Point)
in Visual Basic, the check would return true
in cases where obj
is an instance of a derived class of Point
, even though obj
and the current instance are not of the same run-time type. 両方のオブジェクトが同じ型であることを検証した後、メソッドは、obj
を Point
型にキャストし、2つのオブジェクトのインスタンスフィールドを比較した結果を返します。Having verified that both objects are of the same type, the method casts obj
to type Point
and returns the result of comparing the instance fields of the two objects.
Point3D.Equals
では、Object.Equals(Object)をオーバーライドする継承された Point.Equals
メソッドが、他の処理が行われる前に呼び出されます。In Point3D.Equals
, the inherited Point.Equals
method, which overrides Object.Equals(Object), is invoked before anything else is done. Point3D
はシールクラス (Visual Basic ではNotInheritable
) であるため、TryCast(obj, Point)
の obj is Point
の形式C#でのチェックインは、Visual Basic が obj
オブジェクトであることを保証するのに適しています。Point3D
Because Point3D
is a sealed class (NotInheritable
in Visual Basic), a check in the form obj is Point
in C# or TryCast(obj, Point)
in Visual Basic is adequate to ensure that obj
is a Point3D
object. Point3D
オブジェクトの場合、Point
オブジェクトにキャストされ、Equalsの基本クラスの実装に渡されます。If it is a Point3D
object, it is cast to a Point
object and passed to the base class implementation of Equals. 継承された Point.Equals
メソッドがを返す場合にのみ、メソッドは、派生クラスで導入された z
インスタンスフィールドを比較 true
ます。Only when the inherited Point.Equals
method returns true
does the method compare the z
instance fields introduced in the derived class.
次の例では、内部的に四角形を2つの Point
オブジェクトとして実装する Rectangle
クラスを定義します。The following example defines a Rectangle
class that internally implements a rectangle as two Point
objects. Rectangle
クラスも Object.Equals(Object) をオーバーライドして、値の等価性を提供します。The Rectangle
class also overrides Object.Equals(Object) to provide for value equality.
using System;
class Rectangle
{
private Point a, b;
public Rectangle(int upLeftX, int upLeftY, int downRightX, int downRightY)
{
this.a = new Point(upLeftX, upLeftY);
this.b = new Point(downRightX, downRightY);
}
public override bool Equals(Object obj)
{
// Perform an equality check on two rectangles (Point object pairs).
if (obj == null || GetType() != obj.GetType())
return false;
Rectangle r = (Rectangle)obj;
return a.Equals(r.a) && b.Equals(r.b);
}
public override int GetHashCode()
{
return Tuple.Create(a, b).GetHashCode();
}
public override String ToString()
{
return String.Format("Rectangle({0}, {1}, {2}, {3})",
a.x, a.y, b.x, b.y);
}
}
class Point
{
internal int x;
internal int y;
public Point(int X, int Y)
{
this.x = X;
this.y = Y;
}
public override bool Equals (Object obj)
{
// Performs an equality check on two points (integer pairs).
if (obj == null || GetType() != obj.GetType()) return false;
Point p = (Point)obj;
return (x == p.x) && (y == p.y);
}
public override int GetHashCode()
{
return Tuple.Create(x, y).GetHashCode();
}
}
class Example
{
public static void Main()
{
Rectangle r1 = new Rectangle(0, 0, 100, 200);
Rectangle r2 = new Rectangle(0, 0, 100, 200);
Rectangle r3 = new Rectangle(0, 0, 150, 200);
Console.WriteLine("{0} = {1}: {2}", r1, r2, r1.Equals(r2));
Console.WriteLine("{0} = {1}: {2}", r1, r3, r1.Equals(r3));
Console.WriteLine("{0} = {1}: {2}", r2, r3, r2.Equals(r3));
}
}
// The example displays the following output:
// Rectangle(0, 0, 100, 200) = Rectangle(0, 0, 100, 200): True
// Rectangle(0, 0, 100, 200) = Rectangle(0, 0, 150, 200): False
// Rectangle(0, 0, 100, 200) = Rectangle(0, 0, 150, 200): False
Class Rectangle
Private a, b As Point
Public Sub New(ByVal upLeftX As Integer, ByVal upLeftY As Integer, _
ByVal downRightX As Integer, ByVal downRightY As Integer)
Me.a = New Point(upLeftX, upLeftY)
Me.b = New Point(downRightX, downRightY)
End Sub
Public Overrides Function Equals(ByVal obj As [Object]) As Boolean
' Performs an equality check on two rectangles (Point object pairs).
If obj Is Nothing OrElse Not [GetType]().Equals(obj.GetType()) Then
Return False
End If
Dim r As Rectangle = CType(obj, Rectangle)
Return a.Equals(r.a) AndAlso b.Equals(r.b)
End Function
Public Overrides Function GetHashCode() As Integer
Return Tuple.Create(a, b).GetHashCode()
End Function
Public Overrides Function ToString() As String
Return String.Format("Rectangle({0}, {1}, {2}, {3})",
a.x, a.y, b.x, b.y)
End Function
End Class
Class Point
Friend x As Integer
Friend y As Integer
Public Sub New(ByVal X As Integer, ByVal Y As Integer)
Me.x = X
Me.y = Y
End Sub
Public Overrides Function Equals(ByVal obj As [Object]) As Boolean
' Performs an equality check on two points (integer pairs).
If obj Is Nothing OrElse Not [GetType]().Equals(obj.GetType()) Then
Return False
Else
Dim p As Point = CType(obj, Point)
Return x = p.x AndAlso y = p.y
End If
End Function
Public Overrides Function GetHashCode() As Integer
Return Tuple.Create(x, y).GetHashCode()
End Function
End Class
Class Example
Public Shared Sub Main()
Dim r1 As New Rectangle(0, 0, 100, 200)
Dim r2 As New Rectangle(0, 0, 100, 200)
Dim r3 As New Rectangle(0, 0, 150, 200)
Console.WriteLine("{0} = {1}: {2}", r1, r2, r1.Equals(r2))
Console.WriteLine("{0} = {1}: {2}", r1, r3, r1.Equals(r3))
Console.WriteLine("{0} = {1}: {2}", r2, r3, r2.Equals(r3))
End Sub
End Class
' The example displays the following output:
' Rectangle(0, 0, 100, 200) = Rectangle(0, 0, 100, 200): True
' Rectangle(0, 0, 100, 200) = Rectangle(0, 0, 150, 200): False
' Rectangle(0, 0, 100, 200) = Rectangle(0, 0, 150, 200): False
や Visual Basic などのC#一部の言語では、演算子のオーバーロードがサポートされています。Some languages such as C# and Visual Basic support operator overloading. 型が等値演算子をオーバーロードする場合は、同じ機能を提供するために Equals(Object) メソッドもオーバーライドする必要があります。When a type overloads the equality operator, it must also override the Equals(Object) method to provide the same functionality. 通常、これを行うには、次の例のように、オーバーロードされた等値演算子の観点から Equals(Object) メソッドを記述します。This is typically accomplished by writing the Equals(Object) method in terms of the overloaded equality operator, as in the following example.
using System;
public struct Complex
{
public double re, im;
public override bool Equals(Object obj)
{
return obj is Complex && this == (Complex)obj;
}
public override int GetHashCode()
{
return Tuple.Create(re, im).GetHashCode();
}
public static bool operator ==(Complex x, Complex y)
{
return x.re == y.re && x.im == y.im;
}
public static bool operator !=(Complex x, Complex y)
{
return !(x == y);
}
public override String ToString()
{
return String.Format("({0}, {1})", re, im);
}
}
class MyClass
{
public static void Main()
{
Complex cmplx1, cmplx2;
cmplx1.re = 4.0;
cmplx1.im = 1.0;
cmplx2.re = 2.0;
cmplx2.im = 1.0;
Console.WriteLine("{0} <> {1}: {2}", cmplx1, cmplx2, cmplx1 != cmplx2);
Console.WriteLine("{0} = {1}: {2}", cmplx1, cmplx2, cmplx1.Equals(cmplx2));
cmplx2.re = 4.0;
Console.WriteLine("{0} = {1}: {2}", cmplx1, cmplx2, cmplx1 == cmplx2);
Console.WriteLine("{0} = {1}: {2}", cmplx1, cmplx2, cmplx1.Equals(cmplx2));
}
}
// The example displays the following output:
// (4, 1) <> (2, 1): True
// (4, 1) = (2, 1): False
// (4, 1) = (4, 1): True
// (4, 1) = (4, 1): True
Public Structure Complex
Public re, im As Double
Public Overrides Function Equals(ByVal obj As [Object]) As Boolean
Return TypeOf obj Is Complex AndAlso Me = CType(obj, Complex)
End Function
Public Overrides Function GetHashCode() As Integer
Return Tuple.Create(re, im).GetHashCode()
End Function
Public Shared Operator = (x As Complex, y As Complex) As Boolean
Return x.re = y.re AndAlso x.im = y.im
End Operator
Public Shared Operator <> (x As Complex, y As Complex) As Boolean
Return Not (x = y)
End Operator
Public Overrides Function ToString() As String
Return String.Format("({0}, {1})", re, im)
End Function
End Structure
Class Example
Public Shared Sub Main()
Dim cmplx1, cmplx2 As Complex
cmplx1.re = 4.0
cmplx1.im = 1.0
cmplx2.re = 2.0
cmplx2.im = 1.0
Console.WriteLine("{0} <> {1}: {2}", cmplx1, cmplx2, cmplx1 <> cmplx2)
Console.WriteLine("{0} = {1}: {2}", cmplx1, cmplx2, cmplx1.Equals(cmplx2))
cmplx2.re = 4.0
Console.WriteLine("{0} = {1}: {2}", cmplx1, cmplx2, cmplx1 = cmplx2)
Console.WriteLine("{0} = {1}: {2}", cmplx1, cmplx2, cmplx1.Equals(cmplx2))
End Sub
End Class
' The example displays the following output:
' (4, 1) <> (2, 1): True
' (4, 1) = (2, 1): False
' (4, 1) = (4, 1): True
' (4, 1) = (4, 1): True
Complex
は値型であるため、から派生することはできません。Because Complex
is a value type, it cannot be derived from. したがって、Equals(Object) メソッドに対するオーバーライドでは、各オブジェクトの正確な実行時の型を決定するために GetType を呼び出す必要はC#ありませんが、または Visual Basic の TypeOf
演算子を is
使用して obj
パラメーターの型を確認することができます。Therefore, the override to Equals(Object) method need not call GetType to determine the precise run-time type of each object, but can instead use the is
operator in C# or the TypeOf
operator in Visual Basic to check the type of the obj
parameter.
注釈
現在のインスタンスと obj
パラメーターの比較の種類は、現在のインスタンスが参照型であるか値型であるかによって異なります。The type of comparison between the current instance and the obj
parameter depends on whether the current instance is a reference type or a value type.
現在のインスタンスが参照型の場合、Equals(Object) メソッドは参照の等価性をテストし、Equals(Object) メソッドの呼び出しは ReferenceEquals メソッドの呼び出しと同じです。If the current instance is a reference type, the Equals(Object) method tests for reference equality, and a call to the Equals(Object) method is equivalent to a call to the ReferenceEquals method. 参照の等価性とは、比較されるオブジェクト変数が同じオブジェクトを参照することを意味します。Reference equality means that the object variables that are compared refer to the same object. 次の例は、このような比較の結果を示しています。The following example illustrates the result of such a comparison. これは参照型である
Person
クラスを定義し、Person
クラスコンストラクターを呼び出して、同じ値を持つ2つの新しいPerson
オブジェクトperson1a
とperson2
をインスタンス化します。It defines aPerson
class, which is a reference type, and calls thePerson
class constructor to instantiate two newPerson
objects,person1a
andperson2
, which have the same value. また、別のオブジェクト変数person1b
にもperson1a
が割り当てられます。It also assignsperson1a
to another object variable,person1b
. 例の出力が示すように、person1a
とperson1b
は同じオブジェクトを参照しているため、同じです。As the output from the example shows,person1a
andperson1b
are equal because they reference the same object. ただし、person1a
とperson2
は同じ値を持っていますが、同じではありません。However,person1a
andperson2
are not equal, although they have the same value.using System; // Define a reference type that does not override Equals. public class Person { private string personName; public Person(string name) { this.personName = name; } public override string ToString() { return this.personName; } } public class Example { public static void Main() { Person person1a = new Person("John"); Person person1b = person1a; Person person2 = new Person(person1a.ToString()); Console.WriteLine("Calling Equals:"); Console.WriteLine("person1a and person1b: {0}", person1a.Equals(person1b)); Console.WriteLine("person1a and person2: {0}", person1a.Equals(person2)); Console.WriteLine("\nCasting to an Object and calling Equals:"); Console.WriteLine("person1a and person1b: {0}", ((object) person1a).Equals((object) person1b)); Console.WriteLine("person1a and person2: {0}", ((object) person1a).Equals((object) person2)); } } // The example displays the following output: // person1a and person1b: True // person1a and person2: False // // Casting to an Object and calling Equals: // person1a and person1b: True // person1a and person2: False
' Define a reference type that does not override Equals. Public Class Person Private personName As String Public Sub New(name As String) Me.personName = name End Sub Public Overrides Function ToString() As String Return Me.personName End Function End Class Module Example Public Sub Main() Dim person1a As New Person("John") Dim person1b As Person = person1a Dim person2 As New Person(person1a.ToString()) Console.WriteLine("Calling Equals:") Console.WriteLine("person1a and person1b: {0}", person1a.Equals(person1b)) Console.WriteLine("person1a and person2: {0}", person1a.Equals(person2)) Console.WriteLine() Console.WriteLine("Casting to an Object and calling Equals:") Console.WriteLine("person1a and person1b: {0}", CObj(person1a).Equals(CObj(person1b))) Console.WriteLine("person1a and person2: {0}", CObj(person1a).Equals(CObj(person2))) End Sub End Module ' The example displays the following output: ' Calling Equals: ' person1a and person1b: True ' person1a and person2: False ' ' Casting to an Object and calling Equals: ' person1a and person1b: True ' person1a and person2: False
現在のインスタンスが値型の場合、Equals(Object) メソッドは値が等しいかどうかをテストします。If the current instance is a value type, the Equals(Object) method tests for value equality. 値の等価性は、次のことを意味します。Value equality means the following:
2つのオブジェクトの型は同じです。The two objects are of the same type. 次の例に示すように、値が12の Byte オブジェクトは、値が12の Int32 オブジェクトとは異なります。これは、2つのオブジェクトの実行時の型が異なるためです。As the following example shows, a Byte object that has a value of 12 does not equal an Int32 object that has a value of 12, because the two objects have different run-time types.
byte value1 = 12; int value2 = 12; object object1 = value1; object object2 = value2; Console.WriteLine("{0} ({1}) = {2} ({3}): {4}", object1, object1.GetType().Name, object2, object2.GetType().Name, object1.Equals(object2)); // The example displays the following output: // 12 (Byte) = 12 (Int32): False
Module Example Public Sub Main() Dim value1 As Byte = 12 Dim value2 As Integer = 12 Dim object1 As Object = value1 Dim object2 As Object = value2 Console.WriteLine("{0} ({1}) = {2} ({3}): {4}", object1, object1.GetType().Name, object2, object2.GetType().Name, object1.Equals(object2)) End Sub End Module ' The example displays the following output: ' 12 (Byte) = 12 (Int32): False
2つのオブジェクトのパブリックフィールドとプライベートフィールドの値が等しい。The values of the public and private fields of the two objects are equal. 次の例では、値が等しいかどうかをテストします。The following example tests for value equality. これは、値型の
Person
構造体を定義し、Person
クラスコンストラクターを呼び出して、同じ値を持つ2つの新しいPerson
オブジェクトperson1
とperson2
をインスタンス化します。It defines aPerson
structure, which is a value type, and calls thePerson
class constructor to instantiate two newPerson
objects,person1
andperson2
, which have the same value. この例の出力に示されているように、2つのオブジェクト変数は異なるオブジェクトを参照しますが、person1
とperson2
は、privatepersonName
フィールドの値が同じであるため、等しいと見なされます。As the output from the example shows, although the two object variables refer to different objects,person1
andperson2
are equal because they have the same value for the privatepersonName
field.using System; // Define a value type that does not override Equals. public struct Person { private string personName; public Person(string name) { this.personName = name; } public override string ToString() { return this.personName; } } public struct Example { public static void Main() { Person person1 = new Person("John"); Person person2 = new Person("John"); Console.WriteLine("Calling Equals:"); Console.WriteLine(person1.Equals(person2)); Console.WriteLine("\nCasting to an Object and calling Equals:"); Console.WriteLine(((object) person1).Equals((object) person2)); } } // The example displays the following output: // Calling Equals: // True // // Casting to an Object and calling Equals: // True
' Define a value type that does not override Equals. Public Structure Person Private personName As String Public Sub New(name As String) Me.personName = name End Sub Public Overrides Function ToString() As String Return Me.personName End Function End Structure Module Example Public Sub Main() Dim p1 As New Person("John") Dim p2 As New Person("John") Console.WriteLine("Calling Equals:") Console.WriteLine(p1.Equals(p2)) Console.WriteLine() Console.WriteLine("Casting to an Object and calling Equals:") Console.WriteLine(CObj(p1).Equals(p2)) End Sub End Module ' The example displays the following output: ' Calling Equals: ' True ' ' Casting to an Object and calling Equals: ' True
Object クラスは .NET Framework 内のすべての型の基底クラスであるため、Object.Equals(Object) メソッドは、他のすべての型に対して既定の等値比較を提供します。Because the Object class is the base class for all types in the .NET Framework, the Object.Equals(Object) method provides the default equality comparison for all other types. ただし、型は、多くの場合、Equals メソッドをオーバーライドして値の等価性を実装します。However, types often override the Equals method to implement value equality. 詳細については、以下を参照してください。の呼び出し元とメモ継承先のセクションです。For more information, see the Notes for Callers and Notes for Inheritors sections.
Windows ランタイムWindows Runtime のメモNotes for the Windows ランタイムWindows Runtime
Windows ランタイムWindows Runtime内のクラスで Equals(Object) メソッドオーバーロードを呼び出すと、Equals(Object)をオーバーライドしないクラスの既定の動作が提供されます。When you call the Equals(Object) method overload on a class in the Windows ランタイムWindows Runtime, it provides the default behavior for classes that don't override Equals(Object). これは、.NET Framework が Windows ランタイムWindows Runtime に提供するサポートの一部です (「 Windows ストアアプリと Windows ランタイムの .NET Framework サポート」を参照してください)。This is part of the support that the .NET Framework provides for the Windows ランタイムWindows Runtime (see .NET Framework Support for Windows Store Apps and Windows Runtime). Windows ランタイムWindows Runtime のクラスは Objectを継承せず、現在は Equals(Object) メソッドを実装していません。Classes in the Windows ランタイムWindows Runtime don't inherit Object, and currently don't implement an Equals(Object) method. ただし、 C#または Visual Basic コードで使用する場合、ToString、Equals(Object)、および GetHashCode メソッドがあるように見えます。 .NET Framework は、これらのメソッドの既定の動作を提供します。However, they appear to have ToString, Equals(Object), and GetHashCode methods when you use them in your C# or Visual Basic code, and the .NET Framework provides the default behavior for these methods.
注意
または Visual Basic でC#記述された Windows ランタイムWindows Runtime クラスは、Equals(Object) メソッドのオーバーロードをオーバーライドできます。Windows ランタイムWindows Runtime classes that are written in C# or Visual Basic can override the Equals(Object) method overload.
呼び出し元に関する注意事項Notes for Callers
派生クラスは、Object.Equals(Object) メソッドをオーバーライドして値の等価性を実装することがよくあります。Derived classes frequently override the Object.Equals(Object) method to implement value equality. また、型は、通常、IEquatable<T> インターフェイスを実装することによって、Equals
メソッドに厳密に型指定された追加のオーバーロードを提供します。In addition, types also frequently provide an additional strongly typed overload to the Equals
method, typically by implementing the IEquatable<T> interface. Equals
メソッドを呼び出して等しいかどうかをテストする場合は、現在のインスタンスが Object.Equals をオーバーライドし、Equals
メソッドへの特定の呼び出しがどのように解決されるかを理解しておく必要があります。When you call the Equals
method to test for equality, you should know whether the current instance overrides Object.Equals and understand how a particular call to an Equals
method is resolved. それ以外の場合は、意図したものとは異なる等しいかどうかのテストを実行し、メソッドが予期しない値を返す可能性があります。Otherwise, you may be performing a test for equality that is different from what you intended, and the method may return an unexpected value.
具体的な例を次に示します。The following example provides an illustration. 同じ文字列を持つ3つの StringBuilder オブジェクトをインスタンス化し、Equals
メソッドに対して4つの呼び出しを行います。It instantiates three StringBuilder objects with identical strings, and then makes four calls to Equals
methods. 最初のメソッド呼び出しで true
が返され、残りの3つの false
が返されます。The first method call returns true
, and the remaining three return false
.
using System;
using System.Text;
public class Example
{
public static void Main()
{
StringBuilder sb1 = new StringBuilder("building a string...");
StringBuilder sb2 = new StringBuilder("building a string...");
Console.WriteLine("sb1.Equals(sb2): {0}", sb1.Equals(sb2));
Console.WriteLine("((Object) sb1).Equals(sb2): {0}",
((Object) sb1).Equals(sb2));
Console.WriteLine("Object.Equals(sb1, sb2): {0}",
Object.Equals(sb1, sb2));
Object sb3 = new StringBuilder("building a string...");
Console.WriteLine("\nsb3.Equals(sb2): {0}", sb3.Equals(sb2));
}
}
// The example displays the following output:
// sb1.Equals(sb2): True
// ((Object) sb1).Equals(sb2): False
// Object.Equals(sb1, sb2): False
//
// sb3.Equals(sb2): False
Imports System.Text
Module Example
Public Sub Main()
Dim sb1 As New StringBuilder("building a string...")
Dim sb2 As New StringBuilder("building a string...")
Console.WriteLine("sb1.Equals(sb2): {0}", sb1.Equals(sb2))
Console.WriteLine("CObj(sb1).Equals(sb2): {0}",
CObj(sb1).Equals(sb2))
Console.WriteLine("Object.Equals(sb1, sb2): {0}",
Object.Equals(sb1, sb2))
Console.WriteLine()
Dim sb3 As Object = New StringBuilder("building a string...")
Console.WriteLine("sb3.Equals(sb2): {0}", sb3.Equals(sb2))
End Sub
End Module
' The example displays the following output:
' sb1.Equals(sb2): True
' CObj(sb1).Equals(sb2): False
' Object.Equals(sb1, sb2): False
'
' sb3.Equals(sb2): False
最初のケースでは、厳密に型指定された StringBuilder.Equals(StringBuilder) メソッドオーバーロード (値が等しいかどうかをテストする) が呼び出されます。In the first case, the strongly typed StringBuilder.Equals(StringBuilder) method overload, which tests for value equality, is called. 2つの StringBuilder オブジェクトに割り当てられた文字列は等しいため、メソッドは true
を返します。Because the strings assigned to the two StringBuilder objects are equal, the method returns true
. ただし、StringBuilder では Object.Equals(Object)はオーバーライドされません。However, StringBuilder does not override Object.Equals(Object). このため、StringBuilder オブジェクトが Objectにキャストされると、StringBuilder インスタンスが Object型の変数に割り当てられ、Object.Equals(Object, Object) メソッドに2つの StringBuilder オブジェクトが渡されたときに、既定の Object.Equals(Object) メソッドが呼び出されます。Because of this, when the StringBuilder object is cast to an Object, when a StringBuilder instance is assigned to a variable of type Object, and when the Object.Equals(Object, Object) method is passed two StringBuilder objects, the default Object.Equals(Object) method is called. StringBuilder は参照型であるため、この方法は、2つの StringBuilder オブジェクトを ReferenceEquals メソッドに渡すことと同じです。Because StringBuilder is a reference type, this is equivalent to passing the two StringBuilder objects to the ReferenceEquals method. 3つの StringBuilder オブジェクトにはすべて同一の文字列が含まれますが、3つの異なるオブジェクトを参照します。Although all three StringBuilder objects contain identical strings, they refer to three distinct objects. このため、この3つのメソッド呼び出しは false
を返します。As a result, these three method calls return false
.
ReferenceEquals メソッドを呼び出すことにより、現在のオブジェクトを別のオブジェクトと比較して、参照の等価性を確認できます。You can compare the current object to another object for reference equality by calling the ReferenceEquals method. Visual Basic では、is
キーワード (If Me Is otherObject Then ...
など) を使用することもできます。In Visual Basic, you can also use the is
keyword (for example, If Me Is otherObject Then ...
).
継承に関する注意事項Notes for Inheritors
独自の型を定義する場合、その型は、その基本型の Equals
メソッドによって定義された機能を継承します。When you define your own type, that type inherits the functionality defined by the Equals
method of its base type. 次の表は、.NET Framework の型の主なカテゴリに対する Equals
メソッドの既定の実装を示しています。The following table lists the default implementation of the Equals
method for the major categories of types in the .NET Framework.
型のカテゴリType category | 等しいかどうかの定義Equality defined by | コメントComments |
---|---|---|
Object から直接派生したクラスClass derived directly from Object | Object.Equals(Object) | 参照の等価性。Object.ReferenceEqualsの呼び出しと同じです。Reference equality; equivalent to calling Object.ReferenceEquals. |
構造体Structure | ValueType.Equals | 値の等価性。リフレクションを使用して、バイト単位の比較またはフィールドごとの比較を直接行います。Value equality; either direct byte-by-byte comparison or field-by-field comparison using reflection. |
列挙型Enumeration | Enum.Equals | 値の列挙型と基になる値が同じである必要があります。Values must have the same enumeration type and the same underlying value. |
デリゲートDelegate | MulticastDelegate.Equals | デリゲートは、同じ型の呼び出しリストを持つ必要があります。Delegates must have the same type with identical invocation lists. |
インターフェイスInterface | Object.Equals(Object) | 参照の等価性。Reference equality. |
値型の場合は、常に Equalsをオーバーライドする必要があります。これは、リフレクションに依存する等しいかどうかのテストによってパフォーマンスが低下するためです。For a value type, you should always override Equals, because tests for equality that rely on reflection offer poor performance. 参照型の Equals の既定の実装をオーバーライドして、参照の等価性ではなく値の等価性をテストし、値の等価性の正確な意味を定義することもできます。You can also override the default implementation of Equals for reference types to test for value equality instead of reference equality and to define the precise meaning of value equality. このような Equals の実装では、2つのオブジェクトが同じインスタンスでない場合でも、同じ値を持つ場合は true
が返されます。Such implementations of Equals return true
if the two objects have the same value, even if they are not the same instance. 型の実装者は、オブジェクトの値を構成する対象を決定しますが、通常は、オブジェクトのインスタンス変数に格納されているデータの一部またはすべてを指定します。The type's implementer decides what constitutes an object's value, but it is typically some or all the data stored in the instance variables of the object. たとえば、String オブジェクトの値は、文字列の文字に基づいています。String.Equals(Object) メソッドは、同じ順序で同じ文字を含む2つの文字列インスタンスの true
を返すように、Object.Equals(Object) メソッドをオーバーライドします。For example, the value of a String object is based on the characters of the string; the String.Equals(Object) method overrides the Object.Equals(Object) method to return true
for any two string instances that contain the same characters in the same order.
次の例は、Object.Equals(Object) メソッドをオーバーライドして値の等価性をテストする方法を示しています。The following example shows how to override the Object.Equals(Object) method to test for value equality. Person
クラスの Equals メソッドをオーバーライドします。It overrides the Equals method for the Person
class. Person
その基底クラスの等価性の実装を受け入れた場合、2つの Person
オブジェクトは、1つのオブジェクトを参照した場合にのみ等しくなります。If Person
accepted its base class implementation of equality, two Person
objects would be equal only if they referenced a single object. ただし、この場合、Person.Id
プロパティの値が同じである場合、2つの Person
オブジェクトは等しいことになります。However, in this case, two Person
objects are equal if they have the same value for the Person.Id
property.
public class Person
{
private string idNumber;
private string personName;
public Person(string name, string id)
{
this.personName = name;
this.idNumber = id;
}
public override bool Equals(Object obj)
{
Person personObj = obj as Person;
if (personObj == null)
return false;
else
return idNumber.Equals(personObj.idNumber);
}
public override int GetHashCode()
{
return this.idNumber.GetHashCode();
}
}
public class Example
{
public static void Main()
{
Person p1 = new Person("John", "63412895");
Person p2 = new Person("Jack", "63412895");
Console.WriteLine(p1.Equals(p2));
Console.WriteLine(Object.Equals(p1, p2));
}
}
// The example displays the following output:
// True
// True
Public Class Person
Private idNumber As String
Private personName As String
Public Sub New(name As String, id As String)
Me.personName = name
Me.idNumber = id
End Sub
Public Overrides Function Equals(obj As Object) As Boolean
Dim personObj As Person = TryCast(obj, Person)
If personObj Is Nothing Then
Return False
Else
Return idNumber.Equals(personObj.idNumber)
End If
End Function
Public Overrides Function GetHashCode() As Integer
Return Me.idNumber.GetHashCode()
End Function
End Class
Module Example
Public Sub Main()
Dim p1 As New Person("John", "63412895")
Dim p2 As New Person("Jack", "63412895")
Console.WriteLine(p1.Equals(p2))
Console.WriteLine(Object.Equals(p1, p2))
End Sub
End Module
' The example displays the following output:
' True
' True
Equalsをオーバーライドするだけでなく、厳密に型指定されたテストを等価に提供するために、IEquatable<T> インターフェイスを実装することもできます。In addition to overriding Equals, you can implement the IEquatable<T> interface to provide a strongly typed test for equality.
次のステートメントは、Equals(Object) メソッドのすべての実装に対して true である必要があります。The following statements must be true for all implementations of the Equals(Object) method. 一覧では、x
、y
、および z
はnullではないオブジェクト参照を表します。In the list, x
, y
, and z
represent object references that are not null.
浮動小数点型が含まれている場合を除き、
x.Equals(x)
はtrue
を返します。x.Equals(x)
returnstrue
, except in cases that involve floating-point types. 「 ISO/IEC/IEEE 60559:2011」、「情報技術-マイクロプロセッサシステム--浮動小数点演算」を参照してください。See ISO/IEC/IEEE 60559:2011, Information technology -- Microprocessor Systems -- Floating-Point arithmetic.x.Equals(y)
からはy.Equals(x)
と同じ値が返されます。x.Equals(y)
returns the same value asy.Equals(x)
.x
とy
の両方がNaN
ている場合、x.Equals(y)
はtrue
を返します。x.Equals(y)
returnstrue
if bothx
andy
areNaN
.(x.Equals(y) && y.Equals(z))
がtrue
を返す場合、x.Equals(z)
はtrue
を返します。If(x.Equals(y) && y.Equals(z))
returnstrue
, thenx.Equals(z)
returnstrue
.x.Equals(y)
を連続して呼び出すと、x
とy
で参照されているオブジェクトが変更されない限り、同じ値が返されます。Successive calls tox.Equals(y)
return the same value as long as the objects referenced byx
andy
are not modified.x.Equals(null)
は、false
を返します。x.Equals(null)
returnsfalse
.
Equals の実装では、例外をスローすることはできません。常に値を返す必要があります。Implementations of Equals must not throw exceptions; they should always return a value. たとえば、obj
が null
場合、Equals メソッドは ArgumentNullExceptionをスローするのではなく、false
を返す必要があります。For example, if obj
is null
, the Equals method should return false
instead of throwing an ArgumentNullException.
Equals(Object)をオーバーライドするときは、次のガイドラインに従ってください。Follow these guidelines when overriding Equals(Object):
IComparable を実装する型は Equals(Object)をオーバーライドする必要があります。Types that implement IComparable must override Equals(Object).
Equals(Object) をオーバーライドする型は、GetHashCodeもオーバーライドする必要があります。それ以外の場合、ハッシュテーブルが正しく機能しない可能性があります。Types that override Equals(Object) must also override GetHashCode; otherwise, hash tables might not work correctly.
厳密に型指定されたテストが等しいかどうかをサポートするには、IEquatable<T> インターフェイスを実装することを検討してください。You should consider implementing the IEquatable<T> interface to support strongly typed tests for equality. IEquatable<T>.Equals の実装は、Equalsと一貫性のある結果を返す必要があります。Your IEquatable<T>.Equals implementation should return results that are consistent with Equals.
プログラミング言語で演算子のオーバーロードがサポートされていて、特定の型に対して等値演算子をオーバーロードする場合は、Equals(Object) メソッドもオーバーライドして、等値演算子と同じ結果を返す必要があります。If your programming language supports operator overloading and you overload the equality operator for a given type, you must also override the Equals(Object) method to return the same result as the equality operator. これにより、Equals を使用するクラスライブラリコード (ArrayList や Hashtableなど) が、アプリケーションコードで等値演算子が使用される方法と一貫性のある方法で動作するようになります。This helps ensure that class library code that uses Equals (such as ArrayList and Hashtable) behaves in a manner that is consistent with the way the equality operator is used by application code.
参照型のガイドラインGuidelines for Reference Types
参照型の Equals(Object) をオーバーライドするには、次のガイドラインが適用されます。The following guidelines apply to overriding Equals(Object) for a reference type:
型のセマンティクスがなんらかの値を表すという事実に基づいている場合は、Equals をオーバーライドすることを検討してください。Consider overriding Equals if the semantics of the type are based on the fact that the type represents some value(s).
Equalsをオーバーライドする場合でも、ほとんどの参照型で等値演算子をオーバーロードすることはできません。Most reference types must not overload the equality operator, even if they override Equals. ただし、複素数型などの値のセマンティクスを持つ参照型を実装する場合は、等値演算子をオーバーライドする必要があります。However, if you are implementing a reference type that is intended to have value semantics, such as a complex number type, you must override the equality operator.
変更可能な参照型で Equals をオーバーライドしないでください。You should not override Equals on a mutable reference type. これは、前のセクションで説明したように、Equals をオーバーライドするには、GetHashCode メソッドもオーバーライドする必要があるためです。This is because overriding Equals requires that you also override the GetHashCode method, as discussed in the previous section. これは、変更可能な参照型のインスタンスのハッシュコードがその有効期間中に変更される可能性があることを意味します。そのため、ハッシュテーブル内のオブジェクトが失われる可能性があります。This means that the hash code of an instance of a mutable reference type can change during its lifetime, which can cause the object to be lost in a hash table.
値型のガイドラインGuidelines for Value Types
次のガイドラインは、値型の Equals(Object) をオーバーライドする場合に適用されます。The following guidelines apply to overriding Equals(Object) for a value type:
値が参照型である1つ以上のフィールドを含む値型を定義する場合は、Equals(Object)をオーバーライドする必要があります。If you are defining a value type that includes one or more fields whose values are reference types, you should override Equals(Object). ValueType によって提供される Equals(Object) の実装では、フィールドがすべて値型である値型のバイト単位の比較が実行されますが、リフレクションを使用して、フィールドに参照型が含まれる値型のフィールドごとの比較が実行されます。The Equals(Object) implementation provided by ValueType performs a byte-by-byte comparison for value types whose fields are all value types, but it uses reflection to perform a field-by-field comparison of value types whose fields include reference types.
Equals をオーバーライドし、開発言語で演算子のオーバーロードがサポートされている場合は、等値演算子をオーバーロードする必要があります。If you override Equals and your development language supports operator overloading, you must overload the equality operator.
IEquatable<T> インターフェイスを実装する必要があります。You should implement the IEquatable<T> interface. 厳密に型指定された IEquatable<T>.Equals メソッドを呼び出すと、
obj
引数のボックス化が回避されます。Calling the strongly typed IEquatable<T>.Equals method avoids boxing theobj
argument.
こちらもご覧ください
Equals(Object, Object)
指定されたインスタンスが等しいかどうかを判断します。Determines whether the specified object instances are considered equal.
public:
static bool Equals(System::Object ^ objA, System::Object ^ objB);
public static bool Equals (object objA, object objB);
static member Equals : obj * obj -> bool
Public Shared Function Equals (objA As Object, objB As Object) As Boolean
パラメーター
- objA
- Object
比較する最初のオブジェクト。The first object to compare.
- objB
- Object
比較する 2 番目のオブジェクト。The second object to compare.
戻り値
オブジェクトが等しいと見なされた場合は true
。それ以外の場合は false
。true
if the objects are considered equal; otherwise, false
. objA
と objB
の両方が null の場合、このメソッドは true
を返します。If both objA
and objB
are null, the method returns true
.
例
次の例は、Equals(Object, Object) メソッドを示し、ReferenceEquals メソッドと比較します。The following example illustrates the Equals(Object, Object) method and compares it with the ReferenceEquals method.
using System;
public class Example
{
public static void Main()
{
Dog m1 = new Dog("Alaskan Malamute");
Dog m2 = new Dog("Alaskan Malamute");
Dog g1 = new Dog("Great Pyrenees");
Dog g2 = g1;
Dog d1 = new Dog("Dalmation");
Dog n1 = null;
Dog n2 = null;
Console.WriteLine("null = null: {0}", Object.Equals(n1, n2));
Console.WriteLine("null Reference Equals null: {0}\n", Object.ReferenceEquals(n1, n2));
Console.WriteLine("{0} = {1}: {2}", g1, g2, Object.Equals(g1, g2));
Console.WriteLine("{0} Reference Equals {1}: {2}\n", g1, g2, Object.ReferenceEquals(g1, g2));
Console.WriteLine("{0} = {1}: {2}", m1, m2, Object.Equals(m1, m2));
Console.WriteLine("{0} Reference Equals {1}: {2}\n", m1, m2, Object.ReferenceEquals(m1, m2));
Console.WriteLine("{0} = {1}: {2}", m1, d1, Object.Equals(m1, d1));
Console.WriteLine("{0} Reference Equals {1}: {2}", m1, d1, Object.ReferenceEquals(m1, d1));
}
}
public class Dog
{
// Public field.
public string Breed;
// Class constructor.
public Dog(string dogBreed)
{
this.Breed = dogBreed;
}
public override bool Equals(Object obj)
{
if (obj == null || !(obj is Dog))
return false;
else
return this.Breed == ((Dog) obj).Breed;
}
public override int GetHashCode()
{
return this.Breed.GetHashCode();
}
public override string ToString()
{
return this.Breed;
}
}
// The example displays the following output:
// null = null: True
// null Reference Equals null: True
//
// Great Pyrenees = Great Pyrenees: True
// Great Pyrenees Reference Equals Great Pyrenees: True
//
// Alaskan Malamute = Alaskan Malamute: True
// Alaskan Malamute Reference Equals Alaskan Malamute: False
//
// Alaskan Malamute = Dalmation: False
// Alaskan Malamute Reference Equals Dalmation: False
Module Example
Public Sub Main()
Dim m1 As New Dog("Alaskan Malamute")
Dim m2 As New Dog("Alaskan Malamute")
Dim g1 As New Dog("Great Pyrenees")
Dim g2 As Dog = g1
Dim d1 As New Dog("Dalmation")
Dim n1 As Dog = Nothing
Dim n2 As Dog = Nothing
Console.WriteLine("null = null: {0}", Object.Equals(n1, n2))
Console.WriteLine("null Reference Equals null: {0}", Object.ReferenceEquals(n1, n2))
Console.WriteLine()
Console.WriteLine("{0} = {1}: {2}", g1, g2, Object.Equals(g1, g2))
Console.WriteLine("{0} Reference Equals {1}: {2}", g1, g2, Object.ReferenceEquals(g1, g2))
Console.WriteLine()
Console.WriteLine("{0} = {1}: {2}", m1, m2, Object.Equals(m1, m2))
Console.WriteLine("{0} Reference Equals {1}: {2}", m1, m2, Object.ReferenceEquals(m1, m2))
Console.WriteLine()
Console.WriteLine("{0} = {1}: {2}", m1, d1, Object.Equals(m1, d1))
Console.WriteLine("{0} Reference Equals {1}: {2}", m1, d1, Object.ReferenceEquals(m1, d1))
End Sub
End Module
Public Class Dog
' Public field.
Public Breed As String
' Class constructor.
Public Sub New(dogBreed As String)
Me.Breed = dogBreed
End Sub
Public Overrides Function Equals(obj As Object) As Boolean
If obj Is Nothing OrElse Not typeof obj Is Dog Then
Return False
Else
Return Me.Breed = CType(obj, Dog).Breed
End If
End Function
Public Overrides Function GetHashCode() As Integer
Return Me.Breed.GetHashCode()
End Function
Public Overrides Function ToString() As String
Return Me.Breed
End Function
End Class
' The example displays the following output:
' null = null: True
' null Reference Equals null: True
'
' Great Pyrenees = Great Pyrenees: True
' Great Pyrenees Reference Equals Great Pyrenees: True
'
' Alaskan Malamute = Alaskan Malamute: True
' Alaskan Malamute Reference Equals Alaskan Malamute: False
'
' Alaskan Malamute = Dalmation: False
' Alaskan Malamute Reference Equals Dalmation: False
注釈
静的 Equals(Object, Object) メソッドは、objA
と objB
の2つのオブジェクトが等しいかどうかを示します。The static Equals(Object, Object) method indicates whether two objects, objA
and objB
, are equal. また、値が等しい場合にnullを持つオブジェクトをテストすることもできます。It also enables you to test objects whose value is null for equality. 次のように、objA
と objB
が等しいかどうかを比較します。It compares objA
and objB
for equality as follows:
2つのオブジェクトが同じオブジェクト参照を表しているかどうかを判断します。It determines whether the two objects represent the same object reference. その場合、メソッドは
true
を返します。If they do, the method returnstrue
. このテストは、ReferenceEquals メソッドを呼び出すことと同じです。This test is equivalent to calling the ReferenceEquals method. さらに、objA
とobjB
の両方がnullの場合、メソッドはtrue
を返します。In addition, if bothobjA
andobjB
are null, the method returnstrue
.objA
またはobjB
のいずれかがnullかどうかを判断します。It determines whether eitherobjA
orobjB
is null. その場合はfalse
を返します。If so, it returnsfalse
.2つのオブジェクトが同じオブジェクト参照を表しておらず、どちらもnullでない場合は、
objA
を呼び出します。Equals
(objB
) し、結果を返します。If the two objects do not represent the same object reference and neither is null, it callsobjA
.Equals
(objB
) and returns the result. これは、objA
が Object.Equals(Object) メソッドをオーバーライドする場合に、このオーバーライドが呼び出されることを意味します。This means that ifobjA
overrides the Object.Equals(Object) method, this override is called.