java.util.IdentityHashMap.putAllImpl()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(5.2k)|赞(0)|评价(0)|浏览(112)

本文整理了Java中java.util.IdentityHashMap.putAllImpl()方法的一些代码示例,展示了IdentityHashMap.putAllImpl()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。IdentityHashMap.putAllImpl()方法的具体详情如下:
包路径:java.util.IdentityHashMap
类名称:IdentityHashMap
方法名:putAllImpl

IdentityHashMap.putAllImpl介绍

暂无

代码示例

代码示例来源:origin: robovm/robovm

/**
 * Copies all the mappings in the specified map to this map. These mappings
 * will replace all mappings that this map had for any of the keys currently
 * in the given map.
 *
 * @param map
 *            the map to copy mappings from.
 * @throws NullPointerException
 *             if {@code map} is {@code null}.
 */
@Override
public void putAll(Map<? extends K, ? extends V> map) {
  putAllImpl(map);
}

代码示例来源:origin: robovm/robovm

/**
 * Creates an IdentityHashMap using the given map as initial values.
 *
 * @param map
 *            A map of (key,value) pairs to copy into the IdentityHashMap.
 */
public IdentityHashMap(Map<? extends K, ? extends V> map) {
  this(map.size() < 6 ? 11 : map.size() * 2);
  putAllImpl(map);
}

代码示例来源:origin: MobiVM/robovm

/**
 * Copies all the mappings in the specified map to this map. These mappings
 * will replace all mappings that this map had for any of the keys currently
 * in the given map.
 *
 * @param map
 *            the map to copy mappings from.
 * @throws NullPointerException
 *             if {@code map} is {@code null}.
 */
@Override
public void putAll(Map<? extends K, ? extends V> map) {
  putAllImpl(map);
}

代码示例来源:origin: com.jtransc/jtransc-rt

/**
 * Copies all the mappings in the specified map to this map. These mappings
 * will replace all mappings that this map had for any of the keys currently
 * in the given map.
 *
 * @param map
 *            the map to copy mappings from.
 * @throws NullPointerException
 *             if {@code map} is {@code null}.
 */
@Override
public void putAll(Map<? extends K, ? extends V> map) {
  putAllImpl(map);
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Copies all the mappings in the specified map to this map. These mappings
 * will replace all mappings that this map had for any of the keys currently
 * in the given map.
 *
 * @param map
 *            the map to copy mappings from.
 * @throws NullPointerException
 *             if {@code map} is {@code null}.
 */
@Override
public void putAll(Map<? extends K, ? extends V> map) {
  putAllImpl(map);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Copies all the mappings in the specified map to this map. These mappings
 * will replace all mappings that this map had for any of the keys currently
 * in the given map.
 *
 * @param map
 *            the map to copy mappings from.
 * @throws NullPointerException
 *             if {@code map} is {@code null}.
 */
@Override
public void putAll(Map<? extends K, ? extends V> map) {
  putAllImpl(map);
}

代码示例来源:origin: ibinti/bugvm

/**
 * Copies all the mappings in the specified map to this map. These mappings
 * will replace all mappings that this map had for any of the keys currently
 * in the given map.
 *
 * @param map
 *            the map to copy mappings from.
 * @throws NullPointerException
 *             if {@code map} is {@code null}.
 */
@Override
public void putAll(Map<? extends K, ? extends V> map) {
  putAllImpl(map);
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Copies all the mappings in the specified map to this map. These mappings
 * will replace all mappings that this map had for any of the keys currently
 * in the given map.
 *
 * @param map
 *            the map to copy mappings from.
 * @throws NullPointerException
 *             if {@code map} is {@code null}.
 */
@Override
public void putAll(Map<? extends K, ? extends V> map) {
  putAllImpl(map);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Copies all the mappings in the specified map to this map. These mappings
 * will replace all mappings that this map had for any of the keys currently
 * in the given map.
 *
 * @param map
 *            the map to copy mappings from.
 * @throws NullPointerException
 *             if {@code map} is {@code null}.
 */
@Override
public void putAll(Map<? extends K, ? extends V> map) {
  putAllImpl(map);
}

代码示例来源:origin: MobiVM/robovm

/**
 * Creates an IdentityHashMap using the given map as initial values.
 *
 * @param map
 *            A map of (key,value) pairs to copy into the IdentityHashMap.
 */
public IdentityHashMap(Map<? extends K, ? extends V> map) {
  this(map.size() < 6 ? 11 : map.size() * 2);
  putAllImpl(map);
}

代码示例来源:origin: ibinti/bugvm

/**
 * Creates an IdentityHashMap using the given map as initial values.
 *
 * @param map
 *            A map of (key,value) pairs to copy into the IdentityHashMap.
 */
public IdentityHashMap(Map<? extends K, ? extends V> map) {
  this(map.size() < 6 ? 11 : map.size() * 2);
  putAllImpl(map);
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Creates an IdentityHashMap using the given map as initial values.
 *
 * @param map
 *            A map of (key,value) pairs to copy into the IdentityHashMap.
 */
public IdentityHashMap(Map<? extends K, ? extends V> map) {
  this(map.size() < 6 ? 11 : map.size() * 2);
  putAllImpl(map);
}

代码示例来源:origin: com.jtransc/jtransc-rt

/**
 * Creates an IdentityHashMap using the given map as initial values.
 *
 * @param map
 *            A map of (key,value) pairs to copy into the IdentityHashMap.
 */
public IdentityHashMap(Map<? extends K, ? extends V> map) {
  this(map.size() < 6 ? 11 : map.size() * 2);
  putAllImpl(map);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Creates an IdentityHashMap using the given map as initial values.
 *
 * @param map
 *            A map of (key,value) pairs to copy into the IdentityHashMap.
 */
public IdentityHashMap(Map<? extends K, ? extends V> map) {
  this(map.size() < 6 ? 11 : map.size() * 2);
  putAllImpl(map);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Creates an IdentityHashMap using the given map as initial values.
 *
 * @param map
 *            A map of (key,value) pairs to copy into the IdentityHashMap.
 */
public IdentityHashMap(Map<? extends K, ? extends V> map) {
  this(map.size() < 6 ? 11 : map.size() * 2);
  putAllImpl(map);
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Creates an IdentityHashMap using the given map as initial values.
 *
 * @param map
 *            A map of (key,value) pairs to copy into the IdentityHashMap.
 */
public IdentityHashMap(Map<? extends K, ? extends V> map) {
  this(map.size() < 6 ? 11 : map.size() * 2);
  putAllImpl(map);
}

相关文章