Java Guava Multiset接口
1 什么是Guava Multiset接口
Multiset 接口将“Set”扩展为具有重复元素,并提供各种实用方法来处理集合中此类元素的出现。
2 Guava Multiset接口的语法
@GwtCompatible
public interface Multiset<E>
extends Collection<E>
3 Guava Multiset接口的方法
方法 | 描述 |
---|---|
boolean add(E element) | 将指定元素的单个匹配项添加到此多重集。 |
int add(E element, int occurrences) | 将元素的出现次数添加到此多重集。 |
boolean contains(Object element) | 确定此多重集是否包含指定的元素。 |
boolean containsAll(Collection<?> elements) | 如果此多重集包含指定集合中的每个元素至少出现一次,则返回 true。 |
int count(Object element) | 返回元素在此多重集中出现的次数(元素的计数)。 |
Set<E> elementSet() | 返回包含在此多重集中的一组不同元素。 |
Set<Multiset.Entry<E>> entrySet() | 返回此多重集内容的视图,分组到 Multiset.Entry 实例中,每个实例提供多重集的一个元素和该元素的计数。 |
boolean equals(Object object) | 比较指定对象与此多重集是否相等。 |
int hashCode() | 返回此多重集的哈希码。 |
Iterator<E> iterator() | 返回此集合中元素的迭代器。 |
boolean remove(Object element) | 从此多重集中删除指定元素的单个匹配项(如果存在)。 |
int remove(Object element, int occurrences) | 从此多重集中删除指定元素的出现次数。 |
boolean removeAll(Collection<?> c) | 删除也包含在指定集合中的所有此集合的元素(可选操作)。 |
boolean retainAll(Collection<?> c) | 仅保留此集合中包含在指定集合中的元素(可选操作)。 |
int setCount(E element, int count) | 添加或删除元素的必要出现次数,以便元素达到所需的计数。 |
boolean setCount(E element, int oldCount, int newCount) | 有条件地将元素的计数设置为新值,如 setCount(Object, int) 中所述,前提是该元素具有预期的当前计数。 |
String toString() | 返回对象的字符串表示形式。 |
5 Guava Multiset接口的例子
让我们看一个简单的Guava Multiset接口示例。
package com.yiidian;
import com.google.common.collect.HashMultiset;
import com.google.common.collect.Multiset;
import java.util.Iterator;
import java.util.Set;
public class GuavaTester {
public static void main(String args[]) {
//create a multiset collection
Multiset<String> multiset = HashMultiset.create();
multiset.add("a");
multiset.add("b");
multiset.add("c");
multiset.add("d");
multiset.add("a");
multiset.add("b");
multiset.add("c");
multiset.add("b");
multiset.add("b");
multiset.add("b");
//print the occurrence of an element
System.out.println("Occurrence of 'b' : "+multiset.count("b"));
//print the total size of the multiset
System.out.println("Total Size : "+multiset.size());
//get the distinct elements of the multiset as set
Set<String> set = multiset.elementSet();
//display the elements of the set
System.out.println("Set [");
for (String s : set) {
System.out.println(s);
}
System.out.println("]");
//display all the elements of the multiset using iterator
Iterator<String> iterator = multiset.iterator();
System.out.println("MultiSet [");
while(iterator.hasNext()) {
System.out.println(iterator.next());
}
System.out.println("]");
//display the distinct elements of the multiset with their occurrence count
System.out.println("MultiSet [");
for (Multiset.Entry<String> entry : multiset.entrySet()) {
System.out.println("Element: " + entry.getElement() + ", Occurrence(s): " + entry.getCount());
}
System.out.println("]");
//remove extra occurrences
multiset.remove("b",2);
//print the occurrence of an element
System.out.println("Occurence of 'b' : " + multiset.count("b"));
}
}
输出结果为:
Occurrence of 'b' : 5
Total Size : 10
Set [
a
b
c
d
]
MultiSet [
a
a
b
b
b
b
b
c
c
d
]
MultiSet [
Element: a, Occurrence(s): 2
Element: b, Occurrence(s): 5
Element: c, Occurrence(s): 2
Element: d, Occurrence(s): 1
]
Occurence of 'b' : 3
热门文章
优秀文章