193. Given that the elements of a PriorityQueue are ordered according to natural ordering, and: 2. import java.util.*; 3. public class GetInLine{ 4. public static void main(String[] args){ 5. PriorityQueue<String> pq = new PriorityQueue<String>(); 6. pq.add("banana"); 7. pq.add("pear"); 8. pq.add("apple"); 9. System.out.println(pq.poll() + " " + pq.peek()); 10. } 11. } What is the result?
(A) apple pear
(B) banana pear
(C) apple apple
(D) apple banana
(E) banana banana
(A) apple pear
(B) banana pear
(C) apple apple
(D) apple banana
(E) banana banana
答案:登入後查看
統計: A(2), B(5), C(0), D(2), E(0) #2720749
統計: A(2), B(5), C(0), D(2), E(0) #2720749