Fatihi Youssef
Fatihi Youssef

Reputation: 411

There is no argument given that corresponds to the required formal parameter

There is no argument given that corresponds to the required formal parameter

I don't have any idea about this error please how I make that work?

Upvotes: 4

Views: 33002

Answers (2)

Jimmy
Jimmy

Reputation: 113

I could not open the screenshot of CenterExamen class. The error happens becauase your base class CenterExamen does not have a default constructor. It does not mean like you need to have a default constructor in the base class. In such cases, when inheriting a class, the inherited class should instantiate the base class by passing the required parameters.

Upvotes: 0

Adi Levin
Adi Levin

Reputation: 5233

The error appears because the base class does not have a default constructor. You need to define a constructor in the derived class, which gets the same parameters as the constructor in the base class, and invokes that base class constructor using the base keyword as explained here

Upvotes: 13

Related Questions