Java中的AbstractCollection size()方法及其示例

Java中的AbstractCollection size()方法及其示例

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

AbstractCollection.size()

参数: 此方法不接受任何参数。

返回值: 该方法返回集合中的 size 或存在的元素数量。

以下程序演示了AbstractCollection.size()方法的使用:

程序 1:

// 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 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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程