Map 클래스
-
Map과 HashMap 클래스예전 글들/Android 2011. 5. 10. 12:45
우선 영어로 된 설명을 복사해서 보면 A Map is a data structure consisting of a set of keys and values in which each key is mapped to a single value. The class of the objects used as keys is declared when the Map is declared, as is the class of the corresponding values. (이 긴 문장을 간단히 해석하면 "Map은 키와 값들로 이루어졌고 각각의 키는 하나의 값과 쌍을 이룬다." 뭐 그런거 같군) A Map provides helper methods to iterate through all of the keys contained..