我有一个关于将数组从一种方法返回到 main 的问题。它开始让我很恼火,我无法用大脑来解决这个问题。似乎即使我在方法中更改了数组,当我在 main 中显示它时,它也会显示旧数组。我正在尝试删除数组中的重复数字,我知道它可以工作,因为我已经在调试器中单步执行了它,但是在我返回它并返回主目录后,它再次显示整个数组!我知道我在这里想念的东西一定很容易。有人可以指出我正确的方向吗?这是我的代码...
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int[] numbers = new int[10];
System.out.print("Enter 10 numbers: ");
for (int x = 0; x < numbers.length; ++x)
numbers[x] = input.nextInt();
eliminateDuplicates(numbers);
for (int y = 0; y < numbers.length; ++y)
System.out.print(numbers[y] + " ");
}
public static int[] eliminateDuplicates(int[] numbers) {
int[] temp = new int[numbers.length];
int size = 0;
boolean found = false;
for (int x = 0; x < numbers.length; ++x) {
for (int y = 0; y < temp.length && !found; ++y) {
if (numbers[x] == temp[y])
found = true;
}
if (!found) {
temp[size] = numbers[x];
size++;
}
found = false;
}
int[] result = new int[size];
for (int z = 0; z < result.length; ++z)
result[z] = temp[z];
return result;
}
}