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


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


Java AbstractCollection 的 size() 方法用于获取 Collection 的大小或 Collection.Syntax 中存在的元素数量:

AbstractCollection.size()

参数:该方法不带任何参数。
返回值:该方法返回集合中存在的元素的大小或数量。以下程序说明了 AbstractCollection.size() 方法的使用:程序 1:

Java


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

程序2:

Java


// Java code to illustrate size()
import java.util.*;
import java.util.AbstractCollection;
public class AbstractCollectionDemo {
    public static void main(String args[])
    {
        // Creating an empty Collection
        AbstractCollection<String>
            abs = new LinkedList<String>();
        // Using add() method to add
        // elements in the Collection
        abs.add("Geeks");
        abs.add("for");
        abs.add("Geeks");
        abs.add("10");
        abs.add("20");
        // Displaying the Collection
        System.out.println("Collection:" + abs);
        // Displaying the size of the Collection
        System.out.println("The size of the Collection is:"
                           + abs.size());
    }
}
输出:
Collection:[Geeks, for, Geeks, 10, 20]
The size of the Collection is:5




相关用法


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