QUESTION 12자격증/OCJP_ExamB2018. 7. 9. 16:39
Table of Contents
반응형
QUESTION 12
Given:
34. HashMap props = new HashMap();
35. props.put("key45", "some value");
36. props.put("key12", "some other value");
37. props.put("key39", "yet another value");
38. Set s = props.keySet();
39. //insert code here
What, inserted at line 39, will sort the keys in the props HashMap?
A. Arrays.sort(s);
B. s = new TreeSet(s);
C. Collections.sort(s);
D. s = new SortedSet(s);
Solution : B
s를 TreeSet의 객체로 넘겨서 재저장
> TreeSet은 compare 메소드 기준에 의해서 자동 정렬됨
> keySet() ; key 값만 모아서 Set의 값으로 저장하는 메소드
반응형
'자격증 > OCJP_ExamB' 카테고리의 다른 글
QUESTION 14 (0) | 2018.07.09 |
---|---|
QUESTION 13 (0) | 2018.07.09 |
QUESTION 11 (0) | 2018.07.09 |
QUESTION 10 (0) | 2018.07.09 |
QUESTION 9 (0) | 2018.07.09 |
@IT grow. :: IT grow.
#IT #먹방 #전자기기 #일상
#개발 #일상