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

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

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

IdentityHashMap.computeElementArraySize介绍

暂无

代码示例

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

@SuppressWarnings("unchecked")
private void readObject(ObjectInputStream stream) throws IOException,
    ClassNotFoundException {
  stream.defaultReadObject();
  int savedSize = stream.readInt();
  threshold = getThreshold(DEFAULT_MAX_SIZE);
  elementData = newElementArray(computeElementArraySize());
  for (int i = savedSize; --i >= 0;) {
    K key = (K) stream.readObject();
    put(key, (V) stream.readObject());
  }
  size = savedSize;
}

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

/**
 * Creates an IdentityHashMap with the specified maximum size parameter.
 *
 * @param maxSize
 *            The estimated maximum number of entries that will be put in
 *            this map.
 */
public IdentityHashMap(int maxSize) {
  if (maxSize < 0) {
    throw new IllegalArgumentException("maxSize < 0: " + maxSize);
  }
  size = 0;
  threshold = getThreshold(maxSize);
  elementData = newElementArray(computeElementArraySize());
}

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

@SuppressWarnings("unchecked")
private void readObject(ObjectInputStream stream) throws IOException,
    ClassNotFoundException {
  stream.defaultReadObject();
  int savedSize = stream.readInt();
  threshold = getThreshold(DEFAULT_MAX_SIZE);
  elementData = newElementArray(computeElementArraySize());
  for (int i = savedSize; --i >= 0;) {
    K key = (K) stream.readObject();
    put(key, (V) stream.readObject());
  }
  size = savedSize;
}

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

@SuppressWarnings("unchecked")
private void readObject(ObjectInputStream stream) throws IOException,
    ClassNotFoundException {
  stream.defaultReadObject();
  int savedSize = stream.readInt();
  threshold = getThreshold(DEFAULT_MAX_SIZE);
  elementData = newElementArray(computeElementArraySize());
  for (int i = savedSize; --i >= 0;) {
    K key = (K) stream.readObject();
    put(key, (V) stream.readObject());
  }
  size = savedSize;
}

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

@SuppressWarnings("unchecked")
private void readObject(ObjectInputStream stream) throws IOException,
    ClassNotFoundException {
  stream.defaultReadObject();
  int savedSize = stream.readInt();
  threshold = getThreshold(DEFAULT_MAX_SIZE);
  elementData = newElementArray(computeElementArraySize());
  for (int i = savedSize; --i >= 0;) {
    K key = (K) stream.readObject();
    put(key, (V) stream.readObject());
  }
  size = savedSize;
}

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

@SuppressWarnings("unchecked")
private void readObject(ObjectInputStream stream) throws IOException,
    ClassNotFoundException {
  stream.defaultReadObject();
  int savedSize = stream.readInt();
  threshold = getThreshold(DEFAULT_MAX_SIZE);
  elementData = newElementArray(computeElementArraySize());
  for (int i = savedSize; --i >= 0;) {
    K key = (K) stream.readObject();
    put(key, (V) stream.readObject());
  }
  size = savedSize;
}

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

@SuppressWarnings("unchecked")
private void readObject(ObjectInputStream stream) throws IOException,
    ClassNotFoundException {
  stream.defaultReadObject();
  int savedSize = stream.readInt();
  threshold = getThreshold(DEFAULT_MAX_SIZE);
  elementData = newElementArray(computeElementArraySize());
  for (int i = savedSize; --i >= 0;) {
    K key = (K) stream.readObject();
    put(key, (V) stream.readObject());
  }
  size = savedSize;
}

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

@SuppressWarnings("unchecked")
private void readObject(ObjectInputStream stream) throws IOException,
    ClassNotFoundException {
  stream.defaultReadObject();
  int savedSize = stream.readInt();
  threshold = getThreshold(DEFAULT_MAX_SIZE);
  elementData = newElementArray(computeElementArraySize());
  for (int i = savedSize; --i >= 0;) {
    K key = (K) stream.readObject();
    put(key, (V) stream.readObject());
  }
  size = savedSize;
}

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

@SuppressWarnings("unchecked")
private void readObject(ObjectInputStream stream) throws IOException,
    ClassNotFoundException {
  stream.defaultReadObject();
  int savedSize = stream.readInt();
  threshold = getThreshold(DEFAULT_MAX_SIZE);
  elementData = newElementArray(computeElementArraySize());
  for (int i = savedSize; --i >= 0;) {
    K key = (K) stream.readObject();
    put(key, (V) stream.readObject());
  }
  size = savedSize;
}

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

/**
 * Creates an IdentityHashMap with the specified maximum size parameter.
 *
 * @param maxSize
 *            The estimated maximum number of entries that will be put in
 *            this map.
 */
public IdentityHashMap(int maxSize) {
  if (maxSize < 0) {
    throw new IllegalArgumentException("maxSize < 0: " + maxSize);
  }
  size = 0;
  threshold = getThreshold(maxSize);
  elementData = newElementArray(computeElementArraySize());
}

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

/**
 * Creates an IdentityHashMap with the specified maximum size parameter.
 *
 * @param maxSize
 *            The estimated maximum number of entries that will be put in
 *            this map.
 */
public IdentityHashMap(int maxSize) {
  if (maxSize < 0) {
    throw new IllegalArgumentException("maxSize < 0: " + maxSize);
  }
  size = 0;
  threshold = getThreshold(maxSize);
  elementData = newElementArray(computeElementArraySize());
}

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

/**
 * Creates an IdentityHashMap with the specified maximum size parameter.
 *
 * @param maxSize
 *            The estimated maximum number of entries that will be put in
 *            this map.
 */
public IdentityHashMap(int maxSize) {
  if (maxSize < 0) {
    throw new IllegalArgumentException("maxSize < 0: " + maxSize);
  }
  size = 0;
  threshold = getThreshold(maxSize);
  elementData = newElementArray(computeElementArraySize());
}

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

/**
 * Creates an IdentityHashMap with the specified maximum size parameter.
 *
 * @param maxSize
 *            The estimated maximum number of entries that will be put in
 *            this map.
 */
public IdentityHashMap(int maxSize) {
  if (maxSize < 0) {
    throw new IllegalArgumentException("maxSize < 0: " + maxSize);
  }
  size = 0;
  threshold = getThreshold(maxSize);
  elementData = newElementArray(computeElementArraySize());
}

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

/**
 * Creates an IdentityHashMap with the specified maximum size parameter.
 *
 * @param maxSize
 *            The estimated maximum number of entries that will be put in
 *            this map.
 */
public IdentityHashMap(int maxSize) {
  if (maxSize < 0) {
    throw new IllegalArgumentException("maxSize < 0: " + maxSize);
  }
  size = 0;
  threshold = getThreshold(maxSize);
  elementData = newElementArray(computeElementArraySize());
}

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

/**
 * Creates an IdentityHashMap with the specified maximum size parameter.
 *
 * @param maxSize
 *            The estimated maximum number of entries that will be put in
 *            this map.
 */
public IdentityHashMap(int maxSize) {
  if (maxSize < 0) {
    throw new IllegalArgumentException("maxSize < 0: " + maxSize);
  }
  size = 0;
  threshold = getThreshold(maxSize);
  elementData = newElementArray(computeElementArraySize());
}

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

/**
 * Creates an IdentityHashMap with the specified maximum size parameter.
 *
 * @param maxSize
 *            The estimated maximum number of entries that will be put in
 *            this map.
 */
public IdentityHashMap(int maxSize) {
  if (maxSize < 0) {
    throw new IllegalArgumentException("maxSize < 0: " + maxSize);
  }
  size = 0;
  threshold = getThreshold(maxSize);
  elementData = newElementArray(computeElementArraySize());
}

相关文章