Java AbstractCollection clear()方法及实例

Java AbstractCollection clear()方法及实例

Java中AbstractCollection的clear()方法是用来清除集合中的所有元素的。使用clear()方法只是清除了集合中的所有元素,并没有删除集合。换句话说,可以说clear()方法只是用来清空一个现有的AbstractCollection。

语法

AbstractCollection.clear()

返回值: 该函数不返回任何值。

下面的程序说明了AbstractCollection.clear()方法。

程序1 :

// Java code to illustrate clear(Object o)
// of AbstractCollelction
  
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);
  
        // Clearing the Collection
        abs.clear();
  
        // Displaying the Collection
        System.out.println("AbstractCollection "
                           + "after using clear: "
                           + abs);
    }
}

输出。

AbstractCollection: [Welcome, To, Geeks, 4, Geeks]
AbstractCollection after using clear: []

程序 2:

// Java code to illustrate clear(Object o)
// of AbstractCollelction
  
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);
  
        // Clearing the Collection
        abs.clear();
  
        // Displaying the Collection
        System.out.println("AbstractCollection "
                           + "after using clear: "
                           + abs);
    }
}

输出。

AbstractCollection: [15, 20, 25, 30, 35]
AbstractCollection after using clear: []

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程