Java > Collection

Map

マップのインスタンスを作成
Map<Object,Object> m = new HashMap();
基本は HashMapで作成する。Mapはインターフェース。
http://www.javadrive.jp/start/hashmap/index2.html
インタフェース Map<K,V>
クラス HashMap<K,V>

データの取り出し

MAP.get(キー)
get(key)
最終更新:2015年04月03日 22:36