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


Java Multiset.remove方法代码示例

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


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

示例1: testEquals_differentElements

import com.google.common.collect.Multiset; //导入方法依赖的package包/类
@CollectionSize.Require(absent = ZERO)
public void testEquals_differentElements() {
  Multiset<E> other = HashMultiset.create(getSampleElements());
  other.remove(e0());
  other.add(e3());
  assertFalse("multiset equals a multiset with different elements", getMultiset().equals(other));
}
 
开发者ID:zugzug90,项目名称:guava-mock,代码行数:8,代码来源:MultisetReadsTester.java

示例2: cleanUpForCollectedState

import com.google.common.collect.Multiset; //导入方法依赖的package包/类
/**
 * There may be multiple child injectors blacklisting a certain key so only remove the source
 * that's relevant.
 */
private void cleanUpForCollectedState(Set<KeyAndSource> keysAndSources) {
  synchronized (lock) {
    for (KeyAndSource keyAndSource : keysAndSources) {
      Multiset<Object> set = backingMap.get(keyAndSource.key);
      if (set != null) {
        set.remove(keyAndSource.source);
        if (set.isEmpty()) {
          backingMap.remove(keyAndSource.key);
        }
      }
    }
  }
}
 
开发者ID:maetrive,项目名称:businessworks,代码行数:18,代码来源:WeakKeySet.java


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