gpt4 book ai didi

java - java中链表的poll()和pop()有什么区别?

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:59:30 27 4
gpt4 key购买 nike

<分区>

我最近发现在java API中有两种类似的链表方法,它们都是删除第一个节点并返回它。我写了下面的代码来测试,它们做的完全一样。它们真的完全一样吗?

    test.add(1);
test.add(2);
test.add(3);
System.out.println(test.pop());
for(int i = 0; i < test.size();i++ ){
System.out.print(test.get(i) + " ");
}
System.out.println("");
System.out.println(test.poll());
for(int i = 0; i < test.size();i++ ){
System.out.print(test.get(i) + " ");
}
System.out.println("");

谢谢!!!

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com