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


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


UInt16.Equals方法用於獲取一個值,該值指示當前實例是否等於指定的對象或16位無符號整數。此方法的重載列表中有2種方法,如下所示:

    • Equals(UInt16)方法
    • Equals(Object)方法

UInt16.Equals(UInt16) Method

此方法用於返回一個值,該值指示當前實例是否等於指定的16位無符號整數值。


用法: public bool Equals (ushort obj);
Here, it takes a 16-bit unsigned integer value to compare to the current instance.

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

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

範例1:

// C# program to demonstrate the 
// UInt16.Equals(UInt16) Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        // Declaring and initializing value1 
        ushort value1 = 52; 
  
        // Declaring and initializing value2 
        ushort value2 = 78; 
  
        // using Equals(UInt16) 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); 
    } 
}
輸出:
52 is not equal to 78

範例2:

// C# program to demonstrate the 
// UInt16.Equals(UInt16) Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // calling get() method 
        get(98, 18); 
        get(65, 65); 
        get(100, 40); 
        get(UInt16.MaxValue, UInt16.MinValue); 
    } 
  
    // defining get() method 
    public static void get(ushort value1, 
                           ushort value2) 
    { 
  
        // using Equals(UInt16) 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); 
    } 
}
輸出:
98 is not equal to 18
65 is equal to 65
100 is not equal to 40
65535 is not equal to 0

UInt16.Equals(Object) Method

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

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

返回值:如果obj是UInt16的實例,並且此實例的值等於,則此方法返回true,否則返回false。


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

範例1:

// C# program to demonstrate the 
// UInt16.Equals(Object) Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        // Declaring and initializing value1 
        ushort value1 = 17; 
  
        // Declaring and initializing value2 
        object value2 = 1 / 7; 
  
        // 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); 
    } 
}
輸出:
17 is not equal to 0

範例2:

// C# program to demonstrate the 
// UInt16.Equals(Object) Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        // calling get() method 
        get(12, 75); 
        get(14, 114); 
        get(77, 77); 
        get(54, 76); 
    } 
  
    // defining get() method 
    public static void get(ushort 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); 
    } 
}
輸出:
12 is not equal to 75
14 is not equal to 114
77 is not equal to 77
54 is not equal to 76

參考:



相關用法


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