笔记 Java 队列 关浩博2020年6月29日 浏览量: 1,189 Queue是一个接口,不能像Stack那样直接使用,一般使用LinkedList作为队列。 Queue<Integer> queue = new LinkedList<>(); 优先队列PriorityQueue 打赏赞分享