public class Examples
{
private int numbers[]; //instance variable
public Examples()
{
numbers = new int[10];
for (int i = 0; i < numbers.length; i++)
{ //constructor number 1
numbers[i] = 42;
}
}
public Examples(int[] array)
{
numbers = new int[array.length];
for (int i = 0; i < array.length; i++)
{
numbers[i] = array[i]; //constructor number 2
}
}
}
So i have to write a set method that will create a new array for the instance variable that is the same length as as the array passed to setNumbers and then copy values of its parameter..
so far, i have
public void setNumbers (int numbers)
{
int[] setNumbers = int numbers;
}
and I get errors from that, not sure why