Apache Commons Collections - Bag Interface
มีการเพิ่มอินเทอร์เฟซใหม่เพื่อรองรับกระเป๋า กระเป๋าเป็นตัวกำหนดคอลเลกชันซึ่งจะนับจำนวนครั้งที่วัตถุปรากฏในคอลเลกชัน ตัวอย่างเช่นถ้า Bag มี {a, a, b, c} ดังนั้น getCount ("a") จะส่งคืน 2 ในขณะที่ uniqueSet () ส่งคืนค่าที่ไม่ซ้ำกัน
ประกาศอินเตอร์เฟส
ต่อไปนี้เป็นการประกาศสำหรับอินเตอร์เฟส org.apache.commons.collections4.Bag <E> -
public interface Bag<E>
extends Collection<E>
วิธีการ
วิธีการอนุมานกระเป๋ามีดังนี้ -
ซีเนียร์ | วิธีการและคำอธิบาย |
---|---|
1 | boolean add(E object) (การละเมิด) เพิ่มหนึ่งสำเนาของวัตถุที่ระบุลงในกระเป๋า |
2 | boolean add(E object, int nCopies) เพิ่มสำเนา nCopies ของวัตถุที่ระบุลงในกระเป๋า |
3 | boolean containsAll(Collection<?> coll) (Violation) จะคืนค่าเป็นจริงหากกระเป๋ามีองค์ประกอบทั้งหมดในคอลเลกชั่นที่กำหนดโดยคำนึงถึงความสำคัญของหัวใจ |
4 | int getCount(Object object) ส่งคืนจำนวนครั้งที่เกิดขึ้น (จำนวนนับ) ของวัตถุที่ระบุที่อยู่ในกระเป๋า |
5 | Iterator<E> iterator() ส่งคืน Iterator ในชุดสมาชิกทั้งหมดรวมถึงสำเนาที่เกิดจากจำนวนสมาชิก |
6 | boolean remove(Object object) (การละเมิด) นำสิ่งที่เกิดขึ้นทั้งหมดออกจากกระเป๋า |
7 | boolean remove(Object object, int nCopies) ลบสำเนา nCopies ของวัตถุที่ระบุออกจากกระเป๋า |
8 | boolean removeAll(Collection<?> coll) (การละเมิด) ลบองค์ประกอบทั้งหมดที่แสดงในคอลเลกชันที่กำหนดโดยคำนึงถึงความสำคัญของหัวใจ |
9 | boolean retainAll(Collection<?> coll) (การละเมิด) นำสมาชิกในกระเป๋าที่ไม่ได้อยู่ในคอลเลกชั่นที่กำหนดออกโดยเคารพต่อความสำคัญของหัวใจ |
10 | int size() ส่งคืนจำนวนสินค้าทั้งหมดในกระเป๋าจากทุกประเภท |
11 | Set<E> uniqueSet() ส่งคืนชุดขององค์ประกอบเฉพาะในกระเป๋า |
วิธีการสืบทอด
อินเทอร์เฟซนี้สืบทอดวิธีการจากอินเทอร์เฟซต่อไปนี้ -
- java.util.Collection
ตัวอย่าง Bag Interface
ตัวอย่างของ BagTester.java มีดังนี้ -
import org.apache.commons.collections4.Bag;
import org.apache.commons.collections4.bag.HashBag;
public class BagTester {
public static void main(String[] args) {
Bag<String> bag = new HashBag<>();
//add "a" two times to the bag.
bag.add("a" , 2);
//add "b" one time to the bag.
bag.add("b");
//add "c" one time to the bag.
bag.add("c");
//add "d" three times to the bag.
bag.add("d",3
//get the count of "d" present in bag.
System.out.println("d is present " + bag.getCount("d") + " times.");
System.out.println("bag: " +bag);
//get the set of unique values from the bag
System.out.println("Unique Set: " +bag.uniqueSet());
//remove 2 occurrences of "d" from the bag
bag.remove("d",2);
System.out.println("2 occurences of d removed from bag: " +bag);
System.out.println("d is present " + bag.getCount("d") + " times.");
System.out.println("bag: " +bag);
System.out.println("Unique Set: " +bag.uniqueSet());
}
}
เอาต์พุต
คุณจะเห็นผลลัพธ์ต่อไปนี้ -
d is present 3 times.
bag: [2:a,1:b,1:c,3:d]
Unique Set: [a, b, c, d]
2 occurences of d removed from bag: [2:a,1:b,1:c,1:d]
d is present 1 times.
bag: [2:a,1:b,1:c,1:d]
Unique Set: [a, b, c, d]