Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道对于一些List list;做list.subList(i,j).Clear()清除list项目。但是索引list会相应更新吗?如果没有,我认为它是非常没用的。如果是,这样做的开销是多少?特别是因为我们需要删除范围,然后推进索引。有更好的方法吗?
List list;
list.subList(i,j).Clear()
list
针对此类操作更新索引。