辛勤短靴

文章
4
资源
0
加入时间
2年10月17天

Collection接口的remove和List接口的remove的差别

刚看书上一段代码,觉得输出的结果有点奇怪,查看了jdk的api后,恍然大悟。代码:Collection<String> con = new ArrayList<String>();con.add("a");con.add("b");con.add("c");con.remove(0);System.ou