當前位置: 首頁>>代碼示例>>Java>>正文


Java ConcurrentSkipListSet.addAll方法代碼示例

本文整理匯總了Java中java.util.concurrent.ConcurrentSkipListSet.addAll方法的典型用法代碼示例。如果您正苦於以下問題:Java ConcurrentSkipListSet.addAll方法的具體用法?Java ConcurrentSkipListSet.addAll怎麽用?Java ConcurrentSkipListSet.addAll使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在java.util.concurrent.ConcurrentSkipListSet的用法示例。


在下文中一共展示了ConcurrentSkipListSet.addAll方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: loadSavepoint

import java.util.concurrent.ConcurrentSkipListSet; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
synchronized void loadSavepoint(Savepoint pt) {

	try {

		ConcurrentHashMap<Long, Transaction> transactionSet;
		try (ByteArrayInputStream bais = new ByteArrayInputStream(pt.data)) {
			try (ObjectInputStream ois = new ObjectInputStream(bais)) {
				transactionSet = (ConcurrentHashMap<Long, Transaction>) ois.readObject();
			}
		}

		ConcurrentSkipListSet<Long> listSet = new ConcurrentSkipListSet<>(new LongComparator(transactionSet));
		listSet.addAll(transactionSet.keySet());

		this.transactions = transactionSet;
		this.keys = listSet;
	} catch (Exception e) {
		throw new DataAccessException(e);
	}

}
 
開發者ID:EonTechnology,項目名稱:server,代碼行數:23,代碼來源:Backlog.java

示例2: testConstructor7

import java.util.concurrent.ConcurrentSkipListSet; //導入方法依賴的package包/類
/**
 * The comparator used in constructor is used
 */
public void testConstructor7() {
    MyReverseComparator cmp = new MyReverseComparator();
    ConcurrentSkipListSet q = new ConcurrentSkipListSet(cmp);
    assertEquals(cmp, q.comparator());
    Integer[] ints = new Integer[SIZE];
    for (int i = 0; i < SIZE; ++i)
        ints[i] = new Integer(i);
    q.addAll(Arrays.asList(ints));
    for (int i = SIZE - 1; i >= 0; --i)
        assertEquals(ints[i], q.pollFirst());
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:15,代碼來源:ConcurrentSkipListSetTest.java

示例3: testAddAll1

import java.util.concurrent.ConcurrentSkipListSet; //導入方法依賴的package包/類
/**
 * addAll(null) throws NPE
 */
public void testAddAll1() {
    ConcurrentSkipListSet q = new ConcurrentSkipListSet();
    try {
        q.addAll(null);
        shouldThrow();
    } catch (NullPointerException success) {}
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:11,代碼來源:ConcurrentSkipListSetTest.java

示例4: testAddAll2

import java.util.concurrent.ConcurrentSkipListSet; //導入方法依賴的package包/類
/**
 * addAll of a collection with null elements throws NPE
 */
public void testAddAll2() {
    ConcurrentSkipListSet q = new ConcurrentSkipListSet();
    Integer[] ints = new Integer[SIZE];
    try {
        q.addAll(Arrays.asList(ints));
        shouldThrow();
    } catch (NullPointerException success) {}
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:12,代碼來源:ConcurrentSkipListSetTest.java

示例5: testAddAll3

import java.util.concurrent.ConcurrentSkipListSet; //導入方法依賴的package包/類
/**
 * addAll of a collection with any null elements throws NPE after
 * possibly adding some elements
 */
public void testAddAll3() {
    ConcurrentSkipListSet q = new ConcurrentSkipListSet();
    Integer[] ints = new Integer[SIZE];
    for (int i = 0; i < SIZE - 1; ++i)
        ints[i] = new Integer(i);
    try {
        q.addAll(Arrays.asList(ints));
        shouldThrow();
    } catch (NullPointerException success) {}
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:15,代碼來源:ConcurrentSkipListSetTest.java


注:本文中的java.util.concurrent.ConcurrentSkipListSet.addAll方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。