I have a class called SeatingPlan
which inherits from Seat
.
In the SeatingPlan
constructor I'm initializing as:
public SeatingPlan(int numberOfRows, int numberOfColumns) {
super();
rows = numberOfRows;
columns = numberOfColumns;
seats = new Seat[rows][columns]; // (Seat [][] seats during variable declarations)
}
Seat.java:
public Seat(String subject, int number) {
courseSubject = subject;
courseNumber = number;
}
However I'm getting this error:
SeatingPlan.java:8: error:
constructor Seat in class Seat cannot be applied to given types;
super();
^
required: String,int
found: no arguments
reason: actual and formal argument lists differ in length
1 error
[ERROR] did not compile; check the compiler stack trace field for more info
Either you need a default empty constructor for Seat or you need to call super with the arguments super(subject, number)