Byte.GetHashCode() 方法在 C# 中


C# 中的 Byte.GetHashCode() 方法用于返回当前实例的哈希码。

语法

以下为语法 -

public override int GetHashCode ();

示例

让我们来看一个实现 Byte.GetHashCode() 方法的示例 -

using System;
public class Demo {
   public static void Main(){
      long val = 5654665;
      byte[] arr = BitConverter.GetBytes(val);
      for (int i = 0; i < arr.Length; i++) {
         int res = arr[i].GetHashCode();
         Console.WriteLine("Hashcode = "+res);
      }
   }
}

输出

这将产生以下输出 -

Hashcode = 137
Hashcode = 72
Hashcode = 86
Hashcode = 0
Hashcode = 0
Hashcode = 0
Hashcode = 0
Hashcode = 0

更新日期: 08-11-2019

85 次浏览

启动你的 职业

通过完成课程获得认证

开始
广告