HashMap 소개:
1. (키, 값) 쌍으로 데이터를 저장합니다.
2. 중복된 키는 허용되지 않지만, 중복된 값은 허용됩니다.
3. 동기화되지 않음(여러 스레드가 동시에 액세스 가능)
권장 관련 비디오 튜토리얼: java 온라인 학습
예제 데모는 다음과 같습니다.
HashMap<String, String> hash_map = new HashMap<String, String>(); hash_map.put( "名字" , "anny" ); hash_map.put( "性别" , "女" ); hash_map.put( "年龄" , "20" );
1 추가.
HashMap<String, String> hash_map = new HashMap<String, String>(); hash_map.remove( "名字" );
HashMap<String, String> hash_map = new HashMap<String, String>(); hash_map.put( "名字" , "anny" ); hash_map.put( "性别" , "女" ); hash_map.put( "年龄" , "20" ); for(String key:hash_map.keySet()) { System.out.println("Key: "+key+" Value: "+hash_map.get(key)); }
HashMap<String, String> hash_map = new HashMap<String, String>(); hash_map.put( "名字" , "anny" ); hash_map.put( "性别" , "女" ); hash_map.put( "年龄" , "20" ); Collection cl = hash_map.values(); Iterator itr = cl.iterator(); while (itr.hasNext()) { System.out.println(itr.next()); }
이 글은 소개할 java 입문 프로그램 칼럼에서 따왔습니다. HashMap에 대한 몇 가지 예제 작업이 모두에게 유용할 수 있기를 바랍니다.
위 내용은 Java에서 HashMap의 예제 작업에 대해의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!