티스토리 뷰
HashMap<key,value>
- HashMap is not thread-safe which allows you faster speed than HashTable.
- HashMap doesn't allow insertion order. *Use LinkedHashMap to preserve the fixed order.
- key doesn't allow duplicate key, but for value, duplication is allowed.
put() - key, value map에 입력
get() - key를 전달해야 그 key의 value가 반환된다.
remove() - 해당 key의 key와 value 삭제
Example Code
|
import java.util.*;
public class Main {
public static void main(String[] args) {
String[] fruit = {"apple", "banana", "cherry"};
Map<Integer,String> hash = new HashMap<>();
for (int i = 0; i < fruit.length; i++) {
hash.put(i,fruit[i]); //auto-boxing
}
hash.put(0,"kiwi");
System.out.println(hash.get(0)); //kiwi
System.out.println(hash.get(1)); //banana
System.out.println(hash.get(2)); //cherry
hash.remove(0);
System.out.println(hash.get(0)); //null
}
}
|
'JAVA' 카테고리의 다른 글
| Java is Pass-By-Value (0) | 2019.07.27 |
|---|---|
| Arrays.sort in Java (0) | 2019.07.23 |
| keySet() in Java (0) | 2019.07.23 |
| Map - getOrDefault(), putIfAbsent() in Java (0) | 2019.07.23 |
| Java IOException - Stream Closed (0) | 2019.07.19 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- HackerRank Algorithm
- hackerrank javascript solution
- easy algorithm
- C++
- hackerrank
- math.abs
- Javascript Algorithm
- algorithm
- substring()
- HashMap
- easy javascript algorithm
- math.max
- hackerrank javascript
- string class in java
- 프로그래머스
- javascript
- Collection Framework
- repeat()
- hackerrank solution
- compareTo()
- java
- code refactoring
- equals()
- spring boot application
- Object type casting
- 프로그래머스 알고리즘
- 알고리즘
- rest parameter
- ... in Javascript
- 프로그래머스 알고리즘문제
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
글 보관함