728x90
반응형
containsKey : 해당 map에 키값이 있으면 true, 없으면 false를 반환
containValue :해당 map에 값이 있으면 true, 없으면 false를 반환
예제코드
HashMap<String, String> hashMap = new HashMap<String,String>();
hashMap.put("A", "APPLE");
hashMap.put("B", "BANANA");
System.out.println(hashMap.containsKey("A"));
System.out.println(hashMap.containsKey("E"));
//콘솔 결과
true
false
substring
1) 인자를 하나만 받는경우
-> substring(3) 3번째 자리부터 마지막까지의 문자열을 리턴한다.
2) 인자를 두개 받는경우
-> substring(3,6) 3번째 자리부터 5번째자리까지의 문자열을 리턴한다.
https://dpdpwl.tistory.com/138
https://jamesdreaming.tistory.com/81
728x90
반응형
'개발공부 > Java' 카테고리의 다른 글
[java] indexOf 문자열에 특정 문자가 포함되었는지 확인하기 (0) | 2023.01.11 |
---|---|
[log찍기] 로그...뭘 찍으면 좋을까?? (0) | 2022.05.31 |
[java] NullPointerException (try-catch예시) , 예외처리 (0) | 2021.12.26 |
[java]오버라이딩과 오버로딩 (0) | 2021.11.21 |
[java]형식화된 출력 printf() (0) | 2021.11.19 |
댓글