📌  相关文章
📜  Java中的 AbstractCollection size() 方法及示例

📅  最后修改于: 2022-05-13 01:55:50.465000             🧑  作者: Mango

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

Java AbstractCollectionsize()方法用于获取 Collection 的大小或 Collection 中存在的元素数量。
句法:

AbstractCollection.size()

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

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
            abs = new TreeSet();
 
        // 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());
    }
}


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
            abs = new LinkedList();
 
        // 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: [4, Geeks, To, TreeSet, Welcome]
The size of the Collection is: 5

方案二:

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
            abs = new LinkedList();
 
        // 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