當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java AbstractCollection clear()用法及代碼示例


Java中AbstractCollection的clear()方法用於從Collection中移除所有元素。使用 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:[]




相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 AbstractCollection clear() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。