在Java中添加元素和Int可以通过以下几种方式实现:
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
ArrayList<Integer> list = new ArrayList<>();
// 添加元素
list.add(10);
list.add(20);
list.add(30);
// 在指定位置插入元素
list.add(1, 15);
System.out.println(list); // 输出:[10, 15, 20, 30]
}
}
推荐的腾讯云相关产品:腾讯云云服务器(CVM),产品介绍链接地址:https://cloud.tencent.com/product/cvm
public class Main {
public static void main(String[] args) {
int[] arr = {10, 20, 30};
int[] newArr = new int[arr.length + 1];
// 复制原数组元素到新数组
for (int i = 0; i < arr.length; i++) {
newArr[i] = arr[i];
}
// 添加新元素到新数组末尾
newArr[arr.length] = 40;
// 在指定位置插入新元素
int index = 1;
int element = 15;
for (int i = newArr.length - 1; i > index; i--) {
newArr[i] = newArr[i - 1];
}
newArr[index] = element;
System.out.println(Arrays.toString(newArr)); // 输出:[10, 15, 20, 30, 40]
}
}
推荐的腾讯云相关产品:腾讯云对象存储(COS),产品介绍链接地址:https://cloud.tencent.com/product/cos
import java.util.LinkedList;
public class Main {
public static void main(String[] args) {
LinkedList<Integer> list = new LinkedList<>();
// 添加元素
list.add(10);
list.add(20);
list.add(30);
// 在指定位置插入元素
list.add(1, 15);
System.out.println(list); // 输出:[10, 15, 20, 30]
}
}
推荐的腾讯云相关产品:腾讯云云数据库 MySQL 版(TencentDB for MySQL),产品介绍链接地址:https://cloud.tencent.com/product/cdb
领取专属 10元无门槛券
手把手带您无忧上云