QUESTION 10자격증/OCJP_ExamB2018. 7. 9. 16:15
Table of Contents
반응형
QUESTION 10
Given:
import java.util.*;
public class Mapit
{
public static void main(String[] args)
{
Set<Integer> set = new HashSet<Integer>();
Integer i1 = 45;
Integer i2 = 46;
set.add(i1);
set.add(i1);
set.add(i2);
System.out.print(set.size() + " ");
set.remove(i1);
System.out.print(set.size() + " ");
i2 = 47;
set.remove(i2);
System.out.print(set.size() + " ");
}
}
What is the result?
A. 2 1 0
B. 2 1 1
C. 3 2 1
D. 3 2 2
E. Compilation fails.
F. An exception is thrown at runtime.
Solution : B
plus imformation :
Hashset : 순서를 신경쓰지 않는다 , 데이터의 존재 여부만 확인 , 순서가 필요 없는 데이터를 hash table에 저장 ,중복 불가
반응형
'자격증 > OCJP_ExamB' 카테고리의 다른 글
QUESTION 12 (0) | 2018.07.09 |
---|---|
QUESTION 11 (0) | 2018.07.09 |
QUESTION 9 (0) | 2018.07.09 |
QUESTION 8 (0) | 2018.07.09 |
QUESTION 7 (0) | 2018.07.09 |
@IT grow. :: IT grow.
#IT #먹방 #전자기기 #일상
#개발 #일상