在Java中,可以使用以下方法将对象添加到数组中:
// 创建一个包含3个元素的Person对象数组
Person[] persons = new Person[3];
// 创建一个新的Person对象
Person newPerson = new Person("John", 25);
// 创建一个新的数组,长度比原数组大1
Person[] newArray = new Person[persons.length + 1];
// 将原数组中的元素复制到新数组中
System.arraycopy(persons, 0, newArray, 0, persons.length);
// 将新对象添加到新数组的末尾
newArray[persons.length] = newPerson;
// 将新数组赋值给原数组
persons = newArray;
add()
方法将对象添加到数组的末尾。以下是一个示例代码:// 创建一个ArrayList对象
ArrayList<Person> persons = new ArrayList<>();
// 创建一个新的Person对象
Person newPerson = new Person("John", 25);
// 将新对象添加到ArrayList的末尾
persons.add(newPerson);
无论使用哪种方法,都需要使用相应的语法创建新对象,并将其添加到数组中。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: java怎么定义json对象