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

📅  最后修改于: 2021-05-30 00:12:35             🧑  作者: Mango

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

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

范例1:

// C# program to illustrate the
// SByte.GetHashCode() Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // Taking SByte variable
        sbyte val = 23;
  
        // Getting the hash code for SByte
        // using GetHashCode() method
        int result = val.GetHashCode();
  
        // Display the hashcode
        Console.WriteLine("HashCode for SByte is: {0}",
                                               result);
    }
}
输出:
HashCode for SByte is: 5911

范例2:

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

参考:

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