在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);
無論使用哪種方法,都需要使用相應的語法創建新對象,并將其添加到數組中。