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

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

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

ConcurrentSkipListSet.setMap介绍

暂无

代码示例

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

/**
 * Returns a shallow copy of this {@code ConcurrentSkipListSet}
 * instance. (The elements themselves are not cloned.)
 *
 * @return a shallow copy of this set
 */
public ConcurrentSkipListSet<E> clone() {
  try {
    @SuppressWarnings("unchecked")
    ConcurrentSkipListSet<E> clone =
      (ConcurrentSkipListSet<E>) super.clone();
    clone.setMap(new ConcurrentSkipListMap<E,Object>(m));
    return clone;
  } catch (CloneNotSupportedException e) {
    throw new InternalError();
  }
}

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

/**
 * Returns a shallow copy of this {@code ConcurrentSkipListSet}
 * instance. (The elements themselves are not cloned.)
 *
 * @return a shallow copy of this set
 */
public ConcurrentSkipListSet<E> clone() {
  try {
    @SuppressWarnings("unchecked")
    ConcurrentSkipListSet<E> clone =
      (ConcurrentSkipListSet<E>) super.clone();
    clone.setMap(new ConcurrentSkipListMap<E,Object>(m));
    return clone;
  } catch (CloneNotSupportedException e) {
    throw new InternalError();
  }
}

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

/**
 * Returns a shallow copy of this {@code ConcurrentSkipListSet}
 * instance. (The elements themselves are not cloned.)
 *
 * @return a shallow copy of this set
 */
public ConcurrentSkipListSet<E> clone() {
  try {
    @SuppressWarnings("unchecked")
    ConcurrentSkipListSet<E> clone =
      (ConcurrentSkipListSet<E>) super.clone();
    clone.setMap(new ConcurrentSkipListMap<E,Object>(m));
    return clone;
  } catch (CloneNotSupportedException e) {
    throw new InternalError();
  }
}

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

/**
 * Returns a shallow copy of this {@code ConcurrentSkipListSet}
 * instance. (The elements themselves are not cloned.)
 *
 * @return a shallow copy of this set
 */
public ConcurrentSkipListSet<E> clone() {
  try {
    @SuppressWarnings("unchecked")
    ConcurrentSkipListSet<E> clone =
      (ConcurrentSkipListSet<E>) super.clone();
    clone.setMap(new ConcurrentSkipListMap<E,Object>(m));
    return clone;
  } catch (CloneNotSupportedException e) {
    throw new InternalError();
  }
}

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

/**
 * Returns a shallow copy of this <tt>ConcurrentSkipListSet</tt>
 * instance. (The elements themselves are not cloned.)
 *
 * @return a shallow copy of this set
 */
public ConcurrentSkipListSet<E> clone() {
  ConcurrentSkipListSet<E> clone = null;
  try {
    clone = (ConcurrentSkipListSet<E>) super.clone();
    clone.setMap(new ConcurrentSkipListMap(m));
  } catch (CloneNotSupportedException e) {
    throw new InternalError();
  }
  return clone;
}

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

/**
 * Returns a shallow copy of this <tt>ConcurrentSkipListSet</tt>
 * instance. (The elements themselves are not cloned.)
 *
 * @return a shallow copy of this set
 */
public ConcurrentSkipListSet<E> clone() {
  ConcurrentSkipListSet<E> clone = null;
  try {
    clone = (ConcurrentSkipListSet<E>) super.clone();
    clone.setMap(new ConcurrentSkipListMap(m));
  } catch (CloneNotSupportedException e) {
    throw new InternalError();
  }
  return clone;
}

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

/**
 * Returns a shallow copy of this <tt>ConcurrentSkipListSet</tt>
 * instance. (The elements themselves are not cloned.)
 *
 * @return a shallow copy of this set
 */
public ConcurrentSkipListSet<E> clone() {
  ConcurrentSkipListSet<E> clone = null;
  try {
    clone = (ConcurrentSkipListSet<E>) super.clone();
    clone.setMap(new ConcurrentSkipListMap(m));
  } catch (CloneNotSupportedException e) {
    throw new InternalError();
  }
  return clone;
}

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

/**
 * Returns a shallow copy of this {@code ConcurrentSkipListSet}
 * instance. (The elements themselves are not cloned.)
 *
 * @return a shallow copy of this set
 */
public ConcurrentSkipListSet<E> clone() {
  try {
    @SuppressWarnings("unchecked")
    ConcurrentSkipListSet<E> clone =
      (ConcurrentSkipListSet<E>) super.clone();
    clone.setMap(new ConcurrentSkipListMap<E,Object>(m));
    return clone;
  } catch (CloneNotSupportedException e) {
    throw new InternalError();
  }
}

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

/**
 * Returns a shallow copy of this {@code ConcurrentSkipListSet}
 * instance. (The elements themselves are not cloned.)
 *
 * @return a shallow copy of this set
 */
public ConcurrentSkipListSet<E> clone() {
  try {
    @SuppressWarnings("unchecked")
    ConcurrentSkipListSet<E> clone =
      (ConcurrentSkipListSet<E>) super.clone();
    clone.setMap(new ConcurrentSkipListMap<E,Object>(m));
    return clone;
  } catch (CloneNotSupportedException e) {
    throw new InternalError();
  }
}

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

/**
 * Returns a shallow copy of this {@code ConcurrentSkipListSet}
 * instance. (The elements themselves are not cloned.)
 *
 * @return a shallow copy of this set
 */
public ConcurrentSkipListSet<E> clone() {
  try {
    @SuppressWarnings("unchecked")
    ConcurrentSkipListSet<E> clone =
      (ConcurrentSkipListSet<E>) super.clone();
    clone.setMap(new ConcurrentSkipListMap<E,Object>(m));
    return clone;
  } catch (CloneNotSupportedException e) {
    throw new InternalError();
  }
}

相关文章

微信公众号

最新文章

更多