'Collection'에 해당되는 글 1건

  1. 2008/05/19 HashMap -> Collection -> Iterator

  HashMap hashmap = new HashMap();

  Collection coll = hashmap.values();
  Iterator iter = coll.iterator();
  while (iter.hasNext()) {
    Object obj = iter.next();
  }

Posted by 싸구려코드

Trackback Address :: http://sarangsai.com/trackback/193 관련글 쓰기

댓글을 달아 주세요