哪个条件可以确定用于从购物车中删除商品的索引有效?
index >= 0 && index < items.size()
index < 0
index == items.size()
index >= 0 && index <= items.size()