I have this error in my java code[invalid method declaration;ret urn type required]the code where the error is
Please I need help,thanks in advance.
Code:
public Book(String author,int ISBN,int numberOfPages,double cost,int yearOfPublication,String publishingHouse)
{
super(productId,productName,cost,yearOfPublication,publishingHouse);
this.author = author;
this.ISBN = ISBN;
this.numberOfPages = numberOfPages;
}
Comment