当前位置:首页
>
查试题
>
计算机
>
JAVA认证
>
import java.util.*; public class PQ { public static void main(String[] args) { PriorityQueue pq = new PriorityQueue(); pq.add(”carrot”); pq.add(”apple”); pq.add(”banana”); System.out.println(pq.poll() +”:” + pq.peek()); } } What is the result?()