List

월요일, 5월 02, 2016

Collection 객체 Looping 하기 - Iterator


  • 쉽다

1
2
3
4
 
//authorities == collection 객체
   for (Iterator i=authorities.iterator(); i.hasNext(); ){
         System.out.println(i.next());
    }

cs

댓글 없음:

댓글 쓰기