티스토리 뷰
Project/JAVA&Jsp
[JAVA] Map에서 키나 값이 있는지 없는지 확인(containsKey,containsValue)
Mr.Kang 2020. 8. 13. 11:29Map에서 Key가 있는지 없는지 확인 [ containsKey ]
public class mapContainsKey {
public static void main(String[] args) {
HashMap<String, String> hashMap = new HashMap<String, String>();
hashMap.put("A","아프리카");
hashMap.put("B","브라질");
hashMap.put("C","체코");
hashMap.put("D","덴마크");
System.out.println(hashMap.containsKey("A")); // true
System.out.println(hashMap.containsKey("E")); // false
}
}
Map에서 Value가 있는지 확인 [containsValue]
public class mapContainsValue {
public static void main(String[] args) {
HashMap<String, String> hashMap = new HashMap<String, String>();
hashMap.put("A","아프리카");
hashMap.put("B","브라질");
hashMap.put("C","체코");
hashMap.put("D","덴마크");
System.out.println(hashMap.containsValue("브라질")); // true
System.out.println(hashMap.containsValue("영국")); // false
}
}
'Project > JAVA&Jsp' 카테고리의 다른 글
JAVA 문자열 연결 방법 비교 (0) | 2020.08.20 |
---|---|
JAVA 스트림 Stream 사용방법 (0) | 2020.08.20 |
JAVA 진수변환 (0) | 2020.08.13 |
form 서브밋 할 때 onclick으로 서브밋시 다중 서브밋 막기 (0) | 2011.04.28 |
Popup창에 Post 방식으로... (0) | 2008.07.26 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Letsencrypt wildcard auto renew
- camelcase
- 마이바티스CamelCase
- letsencrypt
- SSL
- Intellj들여쓰기
- 마이바티스
- Letsencrypt wildcard
- Letsencrypt+nginx
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함