public static class Stack {
private final LinkedList<Integer> queue = new LinkedList<>();
public synchronized Integer pop() throws InterruptedException {
if (queue.size() <= 0) {
wait();
}
return queue.removeLast();
}
public synchronized void push(Integer integer) {
queue.addFirst(integer);
notify();
}
}
面试题..题目说这个栈在多线程中可能出现问题,请指出出现问题的情景...我想了半天也没想出来什么情景下回出问题,还请指教..
谢谢
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.