我是Java新手。
对于Vectors来说,效率更高-clear()或removeAllElements()。我猜想removeAllElements,因为它使容量保持不变(不释放内存),而clear()释放内存。取决于应用,两者中的任何一个都是期望的。
我将不胜感激。谢谢。
最佳答案
关于.removeAllElements()方法的JavaDoc。
关于java - Java vector : clear vs removeAllElements method,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5446383/