在一个List的指定位置插入一个元素对这个List中的已有的元素顺序的影响

本文展示了如何在Java的ArrayList中插入元素,并解释了这一操作如何影响已存在元素的顺序。通过一个示例代码,可以看到在指定位置插入元素后,该位置的原有元素会被移动到下一个位置。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

import java.util.List;
import java.util.ArrayList;

public class OpList {
        public static void main(String args[]) {
                int i;
                List<String> testList;
                testList = new ArrayList<String>();

                testList.add("the first element");
                testList.add("the second  element");
                testList.add("the third element");
                testList.add("the fourth element");
               

                // change the sequence
                testList.remove("the third element");
                testList.add(1, "the third element");

                for(i = 0; i < testList.size(); i++)
                        System.out.println(testList.get(i));
        }
}

the result:

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值