📜  C#中的UInt16.GetHashCode方法与示例

📅  最后修改于: 2021-05-29 16:17:23             🧑  作者: Mango

UInt16.GetHashCode方法用于获取当前UInt16实例的HashCode。

下面的程序说明了上面讨论的方法的使用:

范例1:

// C# program to illustrate the
// UInt16.GetHashCode() Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // Taking UInt16 variable
        // i.e. ushort data type
        ushort s1 = 124;
  
        // Getting the hash code for UInt16
        // using GetHashCode() method
        int result = s1.GetHashCode();
  
        // Display the HashCode
        Console.WriteLine("HashCode for UInt16 is: {0}",
                                                result);
    }
}
输出:
HashCode for UInt16 is: 124

范例2:

// C# program to illustrate the
// UInt16.GetHashCode() Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // using result() Method
        result(UInt16.MinValue);
        result(UInt16.MaxValue);
    }
  
    // result() method
    public static void result(ushort val)
    {
  
        // using GetHashCode() method
        int code = val.GetHashCode();
  
        // Display the hashcode
        Console.WriteLine("HashCode for {0} is {1}",
                                         val, code);
    }
}
输出:
HashCode for 0 is 0
HashCode for 65535 is 65535

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.uint16.gethashcode?view=netstandard-2.1