java.util.concurrent.ConcurrentSkipListMap.doRemoveFirstEntry()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(3.8k)|赞(0)|评价(0)|浏览(127)

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

ConcurrentSkipListMap.doRemoveFirstEntry介绍

[英]Removes first entry; returns its snapshot.
[中]删除第一个条目;返回其快照。

代码示例

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

/**
 * Removes and returns a key-value mapping associated with
 * the least key in this map, or {@code null} if the map is empty.
 * The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 */
public Map.Entry<K,V> pollFirstEntry() {
  return doRemoveFirstEntry();
}

代码示例来源:origin: org.codehaus.jsr166-mirror/jsr166

/**
 * Removes and returns a key-value mapping associated with
 * the least key in this map, or <tt>null</tt> if the map is empty.
 * The returned entry does <em>not</em> support
 * the <tt>Entry.setValue</tt> method.
 */
public Map.Entry<K,V> pollFirstEntry() {
  return doRemoveFirstEntry();
}

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

/**
 * Removes and returns a key-value mapping associated with
 * the least key in this map, or {@code null} if the map is empty.
 * The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 */
public Map.Entry<K,V> pollFirstEntry() {
  return doRemoveFirstEntry();
}

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

/**
 * Removes and returns a key-value mapping associated with
 * the least key in this map, or {@code null} if the map is empty.
 * The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 */
public Map.Entry<K,V> pollFirstEntry() {
  return doRemoveFirstEntry();
}

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

/**
 * Removes and returns a key-value mapping associated with
 * the least key in this map, or {@code null} if the map is empty.
 * The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 */
public Map.Entry<K,V> pollFirstEntry() {
  return doRemoveFirstEntry();
}

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

/**
 * Removes and returns a key-value mapping associated with
 * the least key in this map, or {@code null} if the map is empty.
 * The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 */
public Map.Entry<K,V> pollFirstEntry() {
  return doRemoveFirstEntry();
}

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

/**
 * Removes and returns a key-value mapping associated with
 * the least key in this map, or {@code null} if the map is empty.
 * The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 */
public Map.Entry<K,V> pollFirstEntry() {
  return doRemoveFirstEntry();
}

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

/**
 * Removes and returns a key-value mapping associated with
 * the least key in this map, or {@code null} if the map is empty.
 * The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 */
public Map.Entry<K,V> pollFirstEntry() {
  return doRemoveFirstEntry();
}

代码示例来源:origin: org.apidesign.bck2brwsr/emul

/**
 * Removes and returns a key-value mapping associated with
 * the least key in this map, or <tt>null</tt> if the map is empty.
 * The returned entry does <em>not</em> support
 * the <tt>Entry.setValue</tt> method.
 */
public Map.Entry<K,V> pollFirstEntry() {
  return doRemoveFirstEntry();
}

代码示例来源:origin: jtulach/bck2brwsr

/**
 * Removes and returns a key-value mapping associated with
 * the least key in this map, or <tt>null</tt> if the map is empty.
 * The returned entry does <em>not</em> support
 * the <tt>Entry.setValue</tt> method.
 */
public Map.Entry<K,V> pollFirstEntry() {
  return doRemoveFirstEntry();
}

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

/**
 * Removes and returns a key-value mapping associated with
 * the least key in this map, or {@code null} if the map is empty.
 * The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 */
public Map.Entry<K,V> pollFirstEntry() {
  return doRemoveFirstEntry();
}

相关文章

ConcurrentSkipListMap类方法