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


Java AbstractCollection.add方法代碼示例

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


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

示例1: test_addLjava_lang_Object

import java.util.AbstractCollection; //導入方法依賴的package包/類
/**
 * @tests java.util.AbstractCollection#add(java.lang.Object)
 */
public void test_addLjava_lang_Object() {
    AbstractCollection<Object> ac = new AbstractCollection<Object>() {

        @Override
        public Iterator<Object> iterator() {
            fail("iterator should not get called");
            return null;
        }

        @Override
        public int size() {
            fail("size should not get called");
            return 0;
        }
        
    };
    try {
        ac.add(null);
    } catch (UnsupportedOperationException e) {
    }
}
 
開發者ID:Sellegit,項目名稱:j2objc,代碼行數:25,代碼來源:AbstractCollectionTest.java

示例2: test_addLjava_lang_Object

import java.util.AbstractCollection; //導入方法依賴的package包/類
/**
 * @tests java.util.AbstractCollection#add(java.lang.Object)
 */
public void test_addLjava_lang_Object() {
    AbstractCollection<Object> ac = new AbstractCollection<Object>() {

        @Override
        public Iterator<Object> iterator() {
            fail("iterator should not get called");
            return null;
        }

        @Override
        public int size() {
            fail("size should not get called");
            return 0;
        }

    };
    try {
        ac.add(null);
    } catch (UnsupportedOperationException e) {
    }
}
 
開發者ID:keplersj,項目名稱:In-the-Box-Fork,代碼行數:25,代碼來源:AbstractCollectionTest.java

示例3: read

import java.util.AbstractCollection; //導入方法依賴的package包/類
public static AbstractCollection<String> read(String filepath, AbstractCollection<String> collection, Callable<String> function)
{
  File file = new File(filepath);

  // if file does not exist, output error and return null
  if (!file.exists())
  {
    logger.error("file at " + filepath + " does not exist");
    return null;
  }

  // if file cannot be read, output error and return null
  if (!file.canRead())
  {
    logger.error("cannot read file at " + filepath);
    return null;
  }

  // create buffered reader
  try (BufferedReader br = new BufferedReader(new FileReader(file)))
  {
    // read through the file, line by line
    String line;
    while ((line = br.readLine()) != null)
    {
      String item = function.call(line);
      if (item != null)
      {
        collection.add(item);
      }
    }
  } catch (Exception e)
  {
    logger.error("unable to read file");
  }

  return collection;
}
 
開發者ID:apache,項目名稱:incubator-pirk,代碼行數:39,代碼來源:FileIOUtils.java

示例4: makeCollection

import java.util.AbstractCollection; //導入方法依賴的package包/類
/**
 * Creates a mutable {@link ArrayList} instance containing the given elements.
 * 
 * @param source Iterable
 * @return Collection
 */
protected AbstractCollection<S> makeCollection(Iterable<S> source) {

  AbstractCollection<S> result = new ArrayList<S>();

  for (S element : source) {
    try {
      result.add(element);
    } 
    catch (Exception o_O) {
      throw new RuntimeException(o_O);
    }
  }
  return result;
}
 
開發者ID:DISID,項目名稱:springlets,代碼行數:21,代碼來源:IterableAdapter.java


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