作者:小永远佳瞳_186 | 来源:互联网 | 2023-12-10 09:17
本文介绍了在C#中SByte类型的GetHashCode方法,该方法用于获取当前SByte实例的HashCode。给出了该方法的语法和返回值,并提供了一个示例程序演示了该方法的使用。
SByte。C# 中的 GetHashCode 方法及示例
原文:https://www . geesforgeks . org/sbyte-gethashcode-method-in-c-sharp-with-examples/
SByte。GetHashCode 方法用于获取当前 SByte 实例的 HashCode。
语法:public override int GetHashCode();
返回值:这个方法返回一个 32 位有符号整数哈希码。
以下程序说明了上述方法的使用:
例 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);
}
}
Output:
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);
}
}
Output:
HashCode for -128 is 32640
HashCode for 127 is 32639
参考:
- https://docs . Microsoft . com/en-us/dotnet/API/system . sbyte . gethashcode?view=netcore-2.1