标签:int str url sys dql 容器 poll pre new
答:
remove() ,如果队列为空的时候,则会抛出异常
而poll()只会返回null
Queue<String> queue = new LinkedList<String>();
queue. offer("string"); // add
System. out. println(queue. poll());
System. out. println(queue. remove());
System. out. println(queue. size());
29 在 Queue 中 poll()和 remove()有什么区别?
标签:int str url sys dql 容器 poll pre new
原文地址:https://www.cnblogs.com/ynzj123/p/12730356.html