Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

예제가 있는 C#의 Single.GetHashCode() 메서드

<시간/>

C#의 Single.GetHashCode() 메서드는 이 인스턴스의 해시 코드를 반환하는 데 사용됩니다.

구문

구문은 다음과 같습니다 -

public override int GetHashCode ();

예시

이제 예를 살펴보겠습니다 -

using System;
public class Demo {
   public static void Main() {
      float f1 = 40.2f;
      object f2 = 50.5f;
      Console.WriteLine("Value1 = "+f1);
      Console.WriteLine("HashCode of Value1 = "+f1.GetHashCode());
      Console.WriteLine("Value2 = "+f2);
      Console.WriteLine("HashCode of Value2 = "+f2.GetHashCode());
      Console.WriteLine("Are both the values equal? = "+f1.Equals(f2));
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Value1 = 40.2
HashCode of Value1 = 1109445837
Value2 = 50.5
HashCode of Value2 = 1112145920
Are both the values equal? = False

예시

이제 다른 예를 살펴보겠습니다 -

using System;
public class Demo {
   public static void Main() {
      float f1 = 15.3f;
      float f2 = 35.9f;
      Console.WriteLine("Value1 = "+f1);
      Console.WriteLine("Hashcode for Value1 = "+f1.GetHashCode());
      Console.WriteLine("Value2 = "+f2);
      Console.WriteLine("Hashcode for Value2 = "+f2.GetHashCode());
      Console.WriteLine("Is f1 and f2 equal? = "+f1.CompareTo(f2));
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Value1 = 15.3
Hashcode for Value1 = 1098173645
Value2 = 35.9
Hashcode for Value2 = 1108318618
Is f1 and f2 equal? = -1