Objects.DeepEquals(Object, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns true
if the arguments are deeply equal to each other
and false
otherwise.
[Android.Runtime.Register("deepEquals", "(Ljava/lang/Object;Ljava/lang/Object;)Z", "")]
public static bool DeepEquals (Java.Lang.Object? a, Java.Lang.Object? b);
[<Android.Runtime.Register("deepEquals", "(Ljava/lang/Object;Ljava/lang/Object;)Z", "")>]
static member DeepEquals : Java.Lang.Object * Java.Lang.Object -> bool
Parameters
- a
- Object
an object
- b
- Object
an object to be compared with a
for deep equality
Returns
true
if the arguments are deeply equal to each other
and false
otherwise
- Attributes
Remarks
Returns true
if the arguments are deeply equal to each other and false
otherwise.
Two null
values are deeply equal. If both arguments are arrays, the algorithm in Arrays#deepEquals(Object[], Object[]) Arrays.deepEquals
is used to determine equality. Otherwise, equality is determined by using the Object#equals equals
method of the first argument.
Java documentation for java.util.Objects.deepEquals(java.lang.Object, java.lang.Object)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.