当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java AbstractCollection add()用法及代码示例


Java AbstractCollection 中的 add() 方法用于将特定元素添加到集合中。仅当指定元素不存在于集合中时,此方法才会添加元素,否则如果元素已存在于集合中,则该函数将返回 False。

用法:

AbstractCollection.add(Object element)

参数:参数element 是对象类型,是指要添加到集合中的元素。

返回值:如果该元素不存在于集合中,则该函数返回 True,否则如果该元素已存在于集合中,则该函数返回 False。

以下示例程序旨在说明 AbstractCollection.add() 方法:



程序1:将字符串元素添加到 ArrayList 的集合中。


// Java code to illustrate add(Object o)
  
import java.util.*;
import java.util.AbstractCollection;
  
public class AbstractCollectionDemo {
    public static void main(String[] args)
    {
  
        // Create an empty collection
        AbstractCollection<Object>
            abs = new ArrayList<Object>();
  
        // Use add() method to add
        // elements in the collection
        abs.add("Welcome");
        abs.add("To");
        abs.add("Geeks");
        abs.add("4");
        abs.add("Geeks");
  
        // Displaying the Collection
        System.out.println("AbstractCollection:"
                           + abs);
    }
}
输出:
AbstractCollection:[Welcome, To, Geeks, 4, Geeks]

程序2:将整数元素添加到 LinkedList 的集合中。


// Java code to illustrate add(Object o)
  
import java.util.*;
import java.util.AbstractCollection;
  
public class AbstractCollectionDemo {
    public static void main(String[] args)
    {
  
        // Create an empty collection
        AbstractCollection<Object>
            abs = new LinkedList<Object>();
  
        // Use add() method to add
        // elements in the collection
        abs.add(15);
        abs.add(20);
        abs.add(25);
        abs.add(30);
        abs.add(35);
  
        // Displaying the Collection
        System.out.println("AbstractCollection:"
                           + abs);
    }
}
输出:
AbstractCollection:[15, 20, 25, 30, 35]




相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 AbstractCollection add() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。