QUESTION 8자격증/OCJP_ExamB2018. 7. 9. 15:38
Table of Contents
반응형
QUESTION 8
Given that the elements of a PriorityQueue are ordered according to natural ordering, and:
import java.util.*;
public class GetInLine
{
public static void main(String[] args) {
PriorityQueue<String> pq = new PriorityQueue<String>();
pq.add("banana");
pq.add("pear");
pq.add("apple");
System.out.println(pq.poll() + " " + pq.peek());
}
}
What is the result?
A. apple pear
B. banana pear
C. apple apple
D. apple banana
E. banana banana
Solution : D
plus imformation :
poll 메소드 : Queue 에서 데이터를 꺼내온다 . 만일 queue가 비어있다면 null을 반환
peek 메소드 : 큐의 맨 아래 있는 객체를 반환한다 . 이 때 객체를 큐에서 제거하진 않는다.
반응형
'자격증 > OCJP_ExamB' 카테고리의 다른 글
QUESTION 10 (0) | 2018.07.09 |
---|---|
QUESTION 9 (0) | 2018.07.09 |
QUESTION 7 (0) | 2018.07.09 |
QUESTION 6 (0) | 2018.07.09 |
QUESTION 5 (0) | 2018.07.09 |
@IT grow. :: IT grow.
#IT #먹방 #전자기기 #일상
#개발 #일상