"자바 클래스 HashMap"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
7번째 줄: 7번째 줄:
* Key값으로 정렬하고 싶다면 [[자바 TreeMap|TreeMap]]을 사용
* Key값으로 정렬하고 싶다면 [[자바 TreeMap|TreeMap]]을 사용


<source lang='java'>
<syntaxhighlight lang='java'>
HashMap<String,Object> member = new HashMap<String,Object>();
HashMap<String,Object> member = new HashMap<String,Object>();
member.put("ID", "102");
member.put("ID", "102");
22번째 줄: 22번째 줄:
// ID: 102
// ID: 102
// Name: YONEZAWA Akinori
// Name: YONEZAWA Akinori
</source>
</syntaxhighlight>


==메소드==
==메소드==

2020년 11월 2일 (월) 02:49 판

1 개요

Java HashMap
자바 해쉬맵, 자바 해시맵
새 항목이 추가되면 순서는 완전히 바뀔 수 있음
  • Key값으로 정렬하고 싶다면 TreeMap을 사용
HashMap<String,Object> member = new HashMap<String,Object>();
member.put("ID", "102");
member.put("Name", "YONEZAWA Akinori");
member.put("Address", "Naha, Okinawa");

System.out.println( member );
// {Address=Naha, Okinawa, ID=102, Name=YONEZAWA Akinori}

for(Entry<String, Object> m:member.entrySet()){  
	System.out.println( m.getKey()+": "+m.getValue() );  
}
// Address: Naha, Okinawa
// ID: 102
// Name: YONEZAWA Akinori

2 메소드

3 같이 보기

4 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}