Boolean.Equals(Object)方法用於獲取一個值,該值指示當前實例是否等於指定的對象。
用法: public override bool Equals (object obj);
Here, it takes an object to compare with the current instance.
返回值:如果obj是一個布爾值並且具有與此實例相同的值,則此方法返回true,否則返回false。
以下示例程序旨在說明上述方法的用法:
示例1:
// C# program to demonstrate the
// Boolean.Equals(Object) Method
using System;
class GFG {
// Main Method
public static void Main()
{
// Declaring and initializing value1
bool value1 = true;
// Declaring and initializing value2
object value2 = 2 / 78;
// using Equals(object) method
bool status = value1.Equals(value2);
// checking the status
if (status)
Console.WriteLine("{0} is equal to {1}",
value1, value2);
else
Console.WriteLine("{0} is not equal to {1}",
value1, value2);
}
}
輸出:
True is not equal to 0
示例2:
// C# program to demonstrate the
// Boolean.Equals(Object) Method
using System;
class GFG {
// Main Method
public static void Main()
{
// calling get() method
get(true, 5);
get(true, 4);
get(false, false);
get(true, true);
}
// defining get() method
public static void get(bool value1,
object value2)
{
// using Equals(object) method
bool status = value1.Equals(value2);
// checking the status
if (status)
Console.WriteLine("{0} is equal to {1}",
value1, value2);
else
Console.WriteLine("{0} is not equal to {1}",
value1, value2);
}
}
輸出:
True is not equal to 5 True is not equal to 4 False is equal to False True is equal to True
參考:
相關用法
- C# DateTimeOffset.Add()用法及代碼示例
- C# String.Contains()用法及代碼示例
- C# Math.Sin()用法及代碼示例
- C# Math.Cos()用法及代碼示例
- C# Dictionary.Add()用法及代碼示例
- C# Math.Tan()用法及代碼示例
- C# Math.Abs()方法用法及代碼示例
- C# Math.Exp()用法及代碼示例
- C# Math.Abs()函數用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 C# | Boolean.Equals(Object) Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。