首頁 > Java > java教程 > Java 實例 - 集合長度

Java 實例 - 集合長度

黄舟
發布: 2017-01-21 11:02:50
原創
1779 人瀏覽過

以下實例示範如何使用Collections 類別的collection.add() 來新增資料並使用collection.size()來計算集合的長度:

/*
 author by w3cschool.cc
 Main.java
 */import java.util.*;public class Main {
   public static void main(String [] args) {   
      System.out.println( "集合实例!\n" ); 
      int size;
      HashSet collection = 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("集合数据: ");  
      iterator = collection.iterator();     
      while (iterator.hasNext()){
         System.out.print(iterator.next() + " ");  
      }
      System.out.println();
      size = collection.size();
      if (collection.isEmpty()){
         System.out.println("集合是空的");
      }
      else{
         System.out.println( "集合长度: " + size);
      }
      System.out.println();
   }}
登入後複製

以上程式碼運行輸出結果為:

集合实例!
集合数据: White Yellow Blue Green 
集合长度: 4
登入後複製

以上是Java 實例-集合長度的內容,更多相關內容請關注PHP中文網(www.php.cn)!


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
Redis中的sortset有序集合能否設定key的長度?
來自於 1970-01-01 08:00:00
0
0
0
java - bean集合拆分成多個list
來自於 1970-01-01 08:00:00
0
0
0
關於java集合LinkedList的實作問題
來自於 1970-01-01 08:00:00
0
0
0
為什麼 mongodb 的插入這麼不穩定
來自於 1970-01-01 08:00:00
0
0
0
java - 如何用HQL過濾出含集合屬性的實體
來自於 1970-01-01 08:00:00
0
0
0
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板