當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# Int16.Equals用法及代碼示例


Int16.Equals()方法用於獲取一個值,該值指示當前實例是否等於指定的對象或Int16。此方法的重載列表中有2種方法,如下所示:

    • Equals(Int16)
    • Equals(Object)

Int16.Equals(Int16)

此方法用於返回一個值,該值指示當前實例是否等於指定的Int16值。


用法: public bool Equals (short obj);
Here, it takes a Int16 value to compare to this instance.

返回值:如果obj與該實例具有相同的值,則此方法返回true,否則返回false。

以下示例程序旨在說明Int16.Equals(Int16)方法的用法:

範例1:

// C# program to demonstrate the 
// Int16.Equals(Int16) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        // Declaring and initializing value1 
        short value1 = 15; 
  
        // Declaring and initializing value2 
        short value2 = 17; 
  
        // compare both Int16 value 
        // using Equals(Int16) 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); 
    } 
}
輸出:
15 is not equal to 17

範例2:

// C# program to demonstrate the 
// Int16.Equals(Int16) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // calling get() method 
        get(5, 5); 
        get(5, 4); 
        get(10, 20); 
        get(7, 7); 
    } 
  
    // defining get() method 
    public static void get(short value1, 
                           short value2) 
    { 
  
        // Compare both Int16 value 
        // using Equals(Int16) 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); 
    } 
}
輸出:
5 is equal to 5
5 is not equal to 4
10 is not equal to 20
7 is equal to 7

Int16.Equals(Object) Method

此方法用於返回一個值,該值指示當前實例是否等於指定的對象。

用法: public override bool Equals (object obj);
Here, it takes an object to compare with this instance.

返回值:如果obj是Int16的實例,則此方法返回true,否則返回此實例的值,否則返回false。


以下示例程序旨在說明上述方法的用法:

範例1:

// C# program to demonstrate the 
// Int16.Equals(Object) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        // Declaring and initializing value1 
        short value1 = 10; 
  
        // Declaring and initializing value2 
        // It will convert into Int16 implicitly  
        // by the compiler to check whether it is  
        // in the range of short data type i.e.  
        // Int16 or not 
        object value2 = 37; 
  
        // 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 37

範例2:

// C# program to demonstrate the 
// Int16.Equals(Object) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        // calling get() method 
        get(5, 5); 
        get(5, 4); 
        get(10, 20); 
        get(7, 7); 
    } 
  
    // defining get() method 
    // The second parameter will get converted to Int16   
    // implicitly by the compiler to check whether   
    // it is in the range of short data type i.e.  
    // Int16 or not 
    public static void get(short 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); 
    } 
}
輸出:
5 is not equal to 5
5 is not equal to 4
10 is not equal to 20
7 is not equal to 7

參考:



相關用法


注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Int16.Equals Method in C# with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。