Double.GetHashCode()方法用于返回此实例的哈希码。
用法: public override int GetHashCode ();
返回值:此方法返回32位有符号整数哈希码。
下面的程序说明Double.GetHashCode()方法的使用:
示例1:
// C# program to demonstrate the
// Double.GetHashCode() Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// Declaring and initializing value1
double value1 = 10d;
// getting the HashCode
// using GetHashCode() method
int value = value1.GetHashCode();
// Display the HashCode
Console.WriteLine("HashCode is {0}", value);
}
}
输出:
HashCode is 1076101120
示例2:
// C# program to demonstrate the
// Double.Equals(Double)
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// calling get() method
get(5d);
get(5.5d);
get(10d);
get(7.5d);
}
// defining get() method
public static void get(double value1)
{
// getting the HashCode
// using GetHashCode() method
int value = value1.GetHashCode();
// Display the HashCode
Console.WriteLine("HashCode is {0}", value);
}
}
输出:
HashCode is 1075052544 HashCode is 1075183616 HashCode is 1076101120 HashCode is 1075707904
参考:
相关用法
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Double.GetHashCode() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。