如何返回数组的副本?

时间:2014-02-11 07:07:53

标签: java arrays return training-data

 public void addStudent(String student) {
    String [] temp = new String[students.length * 2];
    for(int i = 0; i < students.length; i++){
    temp[i] = students[i];
        }
    students = temp;
    students[numberOfStudents] = student;
    numberOfStudents++;

 }

public String[] getStudents() {
    String[] copyStudents = new String[students.length];

    return copyStudents;

}

我正在尝试让方法getStudents返回我在addStudent方法中创建的数组的副本。我不知道该如何解决这个问题。

7 个答案:

答案 0 :(得分:7)

1)Arrays.copyOf

public String[] getStudents() {
   return Arrays.copyOf(students, students.length);;
}

2 System.arraycopy

public String[] getStudents() {
   String[] copyStudents = new String[students.length];
   System.arraycopy(students, 0, copyStudents, 0, students.length); 
   return copyStudents;
}

3 clone

public String[] getStudents() {
   return students.clone();
}

另请参阅answer了解每种方法的效果。他们是相同的

答案 1 :(得分:1)

System.arraycopy(students, 0, copyStudents, 0, students.length); 

答案 2 :(得分:1)

试试这个:

System.arraycopy(students, 0, copyStudents, 0, students.length);

答案 3 :(得分:1)

Java的System类为此提供了一种实用方法:

public String[] getStudents() {
    String[] copyStudents = new String[students.length];
    System.arraycopy(students, 0, copyStudents, 0, students.length );

    return copyStudents;
}

答案 4 :(得分:0)

System.arraycopy(Object source, int startPosition, Object destination, int startPosition, int length);

docu中的更多信息,当然,有人在这里询问过时间,例如here

答案 5 :(得分:0)

您可以使用Arrays.copyOf()创建阵列的副本。

OR

您也可以使用System.arraycopy()

答案 6 :(得分:0)

您可以使用Arrays.copyOf()

例如:

int[] arr=new int[]{1,4,5}; 
Arrays.copyOf(arr,arr.length); // here first argument is current array
                               // second argument is size of new array.