如何在 Java 中获取集合的大小



问题说明

如何获取集合的大小?

解决方案

下面的示例演示如何使用集合类中的 collection.add() 添加新数据,再使用 collection.size() 获取集合的大小,从而获取集合的大小。

import java.util.*;

public class CollectionTest {
   public static void main(String [] args) {   
      System.out.println( "Collection Example!\n" ); 
      int size;
      HashSet <String>collection = new HashSet <String>();
      String str1 = "Yellow", str2 = "White", str3 = "Green", str4 = "Blue";  
      Iterator iterator;
      collection.add(str1);    
      collection.add(str2);   
      collection.add(str3);   
      collection.add(str4);
      System.out.print("Collection data: ");  
      iterator = collection.iterator();     
      
      while (iterator.hasNext()){
         System.out.print(iterator.next() + " ");  
      }
      System.out.println();
      size = collection.size();
      
      if (collection.isEmpty()){
         System.out.println("Collection is empty");
      } else {
         System.out.println( "Collection size: " + size);
      }
      System.out.println();
   }
}

结果

以上代码示例将生成以下结果。

Collection Example!

Collection data: Blue White Green Yellow
Collection size: 4
java_collections.htm
广告
© . All rights reserved.