程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Map遍歷

Map遍歷

編輯:C++入門知識

[html]   <span style="font-size:18px;">Map<string,student> map=new Map<string,student>;   Student stu1=new Student(1,longer,male);   Student stu1=new Student(1,longer,male);   map.put("1",stu1);   map.put("2" stu2);      三種方法遍歷map   1   Collection<studnet> c=map.values();   for(Iterator lt=c.iterator();it.hasNext();)   { studnet=it.next();   }   2   set<string> c=map.keySet();   for(Iterator lt=c.iterator();it.hasNext();)   {   www.2cto.com String id=(String)it.next();   map.get(id);   3   }   set<Map.entry<string,student>> c=map.entrySet();   for(Iterator it=c.iterator;it.hasNext;){   Map.Entry<string,studnet> entry=(Map.Entry<string,student>)it.next();   entry.getKey();   entry.getValue();   }</span>    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved