Java集合大小
如何获得一个集合的大小?
解决方法
下面的示例显示了如何通过使用Collections集合类的collection.add()来添加新的数据和collection.size()来获取集合的大小得到一个集合的大小。
import java.util.*; public class CollectionTest { public static void main(String [] args) { System.out.println( "Collection Example! " ); int size; HashSetcollection = new HashSet (); 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