当前位置: 首页>>代码示例>>Java>>正文


Java Entry.hashCode方法代码示例

本文整理汇总了Java中java.util.Map.Entry.hashCode方法的典型用法代码示例。如果您正苦于以下问题:Java Entry.hashCode方法的具体用法?Java Entry.hashCode怎么用?Java Entry.hashCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.util.Map.Entry的用法示例。


在下文中一共展示了Entry.hashCode方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: hashCode

import java.util.Map.Entry; //导入方法依赖的package包/类
@Override
public int hashCode()
{
  int hash = 0;

  ConcurrentEntry<K,V>[] entries = _entries;

  for (Entry<K,V> entry : entries)
  {
    hash += entry.hashCode();
  }

  return hash;
}
 
开发者ID:apache,项目名称:myfaces-trinidad,代码行数:15,代码来源:CopyOnWriteArrayMap.java

示例2: hashCode

import java.util.Map.Entry; //导入方法依赖的package包/类
@Override
public int hashCode() {
	int result = 31 * size + dimensions;
	for (Entry<K, V> entry : this) {
		result = 31 * result + entry.hashCode();
	}
	return result;
}
 
开发者ID:highpower,项目名称:java-kdtree,代码行数:9,代码来源:Tree.java

示例3: hashCode

import java.util.Map.Entry; //导入方法依赖的package包/类
/**
 * Returns the hash code value for this map.  The hash code of a map is
 * defined to be the sum of the hash codes of each entry in the map's
 * {@code entrySet()} view.  This ensures that {@code m1.equals(m2)}
 * implies that {@code m1.hashCode()==m2.hashCode()} for any two maps
 * {@code m1} and {@code m2}, as required by the general contract of
 * {@link Object#hashCode}.
 *
 * @implSpec
 * This implementation iterates over {@code entrySet()}, calling
 * {@link Map.Entry#hashCode hashCode()} on each element (entry) in the
 * set, and adding up the results.
 *
 * @return the hash code value for this map
 * @see Map.Entry#hashCode()
 * @see Object#equals(Object)
 * @see Set#equals(Object)
 */
public int hashCode() {
    int h = 0;
    for (Entry<K, V> entry : entrySet())
        h += entry.hashCode();
    return h;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:25,代码来源:AbstractMap.java


注:本文中的java.util.Map.Entry.hashCode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。