SByte.Equals方法用於獲取一個值,該值指示當前實例是否等於指定的對象或SByte。此方法的重載列表中有2種方法,如下所示:
- 等於(SByte)方法
- 等於(對象)方法
SByte.Equals(SByte) Method
此方法用於返回一個值,該值指示當前實例是否等於指定的SByte值。
用法: public bool Equals (sbyte obj);
Here, it takes a SByte value to compare to the current instance.
返回值:如果obj與該實例具有相同的值,則此方法返回true,否則返回false。
以下示例程序旨在說明SByte.Equals(SByte)方法的用法:
示例1:
// C# program to demonstrate the
// SByte.Equals(SByte) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// Declaring and initializing value1
sbyte value1 = 42;
// Declaring and initializing value2
sbyte value2 = 23;
// using Equals(SByte) 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);
}
}
輸出:
42 is not equal to 23
示例2:
// C# program to demonstrate the
// SByte.Equals(SByte) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// calling get() method
get(78, 58);
get(45, 45);
get(10, 20);
get(SByte.MaxValue, SByte.MinValue);
}
// defining get() method
public static void get(sbyte value1,
sbyte value2)
{
// using Equals(SByte) 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);
}
}
輸出:
78 is not equal to 58 45 is equal to 45 10 is not equal to 20 127 is not equal to -128
SByte.Equals(Object) Method
此方法用於返回一個值,該值指示當前實例是否等於指定的對象。
用法: public override bool Equals (object obj);
Here, it takes an object to compare with the current instance.
返回值:如果obj是SByte的一個實例,並且等於該實例的值,則此方法返回true,否則返回false。
以下示例程序旨在說明上述方法的用法:
示例1:
// C# program to demonstrate the
// SByte.Equals(Object) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// Declaring and initializing value1
sbyte value1 = 10;
// Declaring and initializing value2
object value2 = 1 / 47;
// 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);
}
}
輸出:
10 is not equal to 0
示例2:
// C# program to demonstrate the
// SByte.Equals(Object) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// calling get() method
get(112, 85);
get(124, 154);
get(87, 87);
get(54, 76);
}
// defining get() method
public static void get(sbyte value1,
object value2)
{
// compare both SByte value
// 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);
}
}
輸出:
112 is not equal to 85 124 is not equal to 154 87 is not equal to 87 54 is not equal to 76
參考:
相關用法
- C# MathF.Min()用法及代碼示例
- C# MathF.Max()用法及代碼示例
- C# MathF.Sin()用法及代碼示例
- C# MathF.Cos()用法及代碼示例
- C# MathF.Tan()用法及代碼示例
- C# MathF.Exp()用法及代碼示例
- C# MathF.Log()用法及代碼示例
- C# MathF.Pow()用法及代碼示例
- C# MathF.Abs()用法及代碼示例
- C# MathF.Sign()用法及代碼示例
- C# Decimal.GetTypeCode用法及代碼示例
- C# MathF.Floor()用法及代碼示例
- C# Graphics.DrawArc()用法及代碼示例
- C# Decimal.GetHashCode用法及代碼示例
- C# Int64.Equals用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 SByte.Equals Method in C# with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。