Java 实例 - 集合长度

以下实例演示了如何使用 Collections 类 的collection.add() 来添加数据并使用 collection.size()来计算集合的长度:

Main.java 文件

  1. import java.util.*;
  2. public class Main {
  3. public static void main(String [] args) {
  4. System.out.println( "集合实例!\n" );
  5. int size;
  6. HashSet collection = new HashSet ();
  7. String str1 = "Yellow", str2 = "White", str3 =
  8. "Green", str4 = "Blue";
  9. Iterator iterator;
  10. collection.add(str1);
  11. collection.add(str2);
  12. collection.add(str3);
  13. collection.add(str4);
  14. System.out.print("集合数据: ");
  15. iterator = collection.iterator();
  16. while (iterator.hasNext()){
  17. System.out.print(iterator.next() + " ");
  18. }
  19. System.out.println();
  20. size = collection.size();
  21. if (collection.isEmpty()){
  22. System.out.println("集合是空的");
  23. }
  24. else{
  25. System.out.println( "集合长度: " + size);
  26. }
  27. System.out.println();
  28. }
  29. }

以上代码运行输出结果为:

  1. 集合实例!
  2.  
  3. 集合数据: White Yellow Blue Green
  4. 集合长度: 4
  5.