I am having problems with a current assignment I got (done in Java). I have been given a project to do with an abstract class and subclasses. However, I am stuck with creating the copy constructor for it because I keep getting the error: actual and formal argument lists differ in length. Here, arr is the abstract "super" class with the constructor function inside it only being defined (shown below). The constructor has arguments that correspond to the rows (m) and columns (n) of the 2D array. In the Board class (which extends arr), I have to define both the constructor and copy constructor. I have defined the constructor using super(m,n) but I cannot define the copy constructor (and I am not sure of the subclass constructor is correct here too).
In the arr class:
protected int a, b;
protected Arr (int height, int width) {
a = height;
b = width;
}
In the board Subclass:
public class Board extends Arr{
private int[][] space;
public Board (int a, int b){
super(a,b);
this.space = new int[a][b];
}
The Copy Constructor
public Board(Board X) {
board copy = new Board(a,b);
copy.space = X.space;
}
I get an error on the line "public board(board X) {" as it seems that I have the wrong arguments. However, I am not allowed to change the arguments here. From my previous research about this, I only know that the copy constructor copies the argument object, but I cannot do that because I do not how to make one. Thanks for your help