hashAll静态方法

  1. @Since("2.14")
int hashAll(
  1. Iterable<Object?> objects
)

为一系列对象创建一个组合哈希码。

即使元素为null,也将计算objects中的元素的哈希码,通过迭代顺序中的每个元素的Object.hashCode进行数值组合。

hashAll([o])的结果不是o.hashCode

示例

class SomeObject {
  final List<String> path;
  SomeObject(this.path);
  bool operator ==(Object other) {
    if (other is SomeObject) {
      if (path.length != other.path.length) return false;
      for (int i = 0; i < path.length; i++) {
        if (path[i] != other.path[i]) return false;
      }
      return true;
    }
    return false;
  }

  int get hashCode => Object.hashAll(path);
}

当函数在程序的单次执行中再次使用具有相同哈希码且顺序相同的对象调用时,计算值将是致的。

此函数生成的哈希值在相同程序的多次运行中或在不同隔离的程序代码之间不一定保证稳定。所使用的确切算法可能在不同平台之间或在不同版本的平台库之间有所不同,并且它可能依赖于每次程序执行时都会变化的值。

实现

@Since("2.14")
static int hashAll(Iterable<Object?> objects) {
  int hash = _hashSeed;
  for (var object in objects) {
    hash = SystemHash.combine(hash, object.hashCode);
  }
  return SystemHash.finish(hash);
}