-1
 public static void copyList(int[]list) {

   int [] copyList = new int[list.length]; //define new array
   for(int i = 0; i < list.length; i++){
   copylist[i] = list[i];
  }
 System.out.println("The copy is: " + Arrays.toString(copyList) );

}

大家好。编写此方法时遇到问题。您对我如何改进此代码有任何建议吗?我在正确的方向吗?

谢谢!-帕特里克

4

1 回答 1

2

在 Java 中,变量名区分大小写。

将循环内的变量重命名为 copyList(大写 L),它应该像一个魅力一样工作。

于 2014-05-31T14:51:59.983 回答