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

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

<시간/>

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

구문

다음은 구문입니다 -

public override int GetHashCode ();

이제 Decimal.GetHashCode() 메서드를 구현하는 예를 살펴보겠습니다. -

using System;
public class Demo {
   public static void Main(){
      Decimal val = 135269.38193M;
      Console.WriteLine("Decimal Value = {0}", val);
      Console.WriteLine("HashCode = {0}", (val.GetHashCode()) );
   }
}

출력

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

Decimal Value = 135269.38193
HashCode = 1328665595

이제 Decimal.GetHashCode() 메서드를 구현하는 또 다른 예를 살펴보겠습니다. -

using System;
public class Demo {
   public static void Main(){
      Decimal val = Decimal.MaxValue;
      Console.WriteLine("Decimal Value = {0}", val);
      Console.WriteLine("HashCode = {0}", (val.GetHashCode()) );
   }
}

출력

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

Decimal Value = 79228162514264337593543950335
HashCode = 1173356544