Computer >> Máy Tính >  >> Lập trình >> C#

Làm cách nào để lấy HashCode cho chuỗi trong C #?

Để lấy HashCode cho chuỗi, mã như sau, mã như sau -

Ví dụ

using System;
public class Demo {
   public static void Main(String[] args) {
      string str1 = "Akon";
      string str2 = "Eminem";
      Console.WriteLine("String 1 = "+str1);
      Console.WriteLine("HashCode of String 1 = "+str1.GetHashCode());
      Console.WriteLine("String 2 = "+str2);
      Console.WriteLine("HashCode of String 2 = "+str2.GetHashCode());
      Console.WriteLine("String 1 is equal to String 2: {0}", str1.Equals(str2));
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

String 1 = Akon
HashCode of String 1 = 416613838
String 2 = Eminem
HashCode of String 2 = 40371907
String 1 is equal to String 2: False

Ví dụ

Hãy để chúng tôi xem một ví dụ khác -

using System;
public class Demo {
   public static void Main(String[] args) {
      string str1 = "Imagine Dragons";
      string str2 = "Imagine Dragons";
      Console.WriteLine("String 1 = "+str1);
      Console.WriteLine("HashCode of String 1 = "+str1.GetHashCode());
      Console.WriteLine("String 2 = "+str2);
      Console.WriteLine("HashCode of String 2 = "+str2.GetHashCode());
      Console.WriteLine("String 1 is equal to String 2: {0}", str1.Equals(str2));
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

String 1 = Imagine Dragons
HashCode of String 1 = -1546868095
String 2 = Imagine Dragons
HashCode of String 2 = -1546868095
String 1 is equal to String 2: True