Hello I'm new to Java, I'm getting this error in my production worker class. My Production worker constructor says explicitly invoke another constructor. I don't know what to do?.

import java.util.Date;

public class Employee
{
      private String name, number;
      private Date date;

      public Employee(String name, String number, Date date)
      {
            setName(name);
            setNumber(number);
            setDate(date);
      }

      public void setName(String n)
      {
            name = n;
      }
      public void setNumber(String n)
      {
            number = n;
            // you can check the format here for correctness
      }
      public void setDate(Date d)
      {
            date = d;
      }

      public String getName()
      {
            return name;
      }
      public String getNumber()
      {
            return number;
      }
      public Date getDate()
      {
            return date;
      }
}



public class ProductionWorker extends Employee
{
      private int shift;
      private double hourlyrate;
       // error is here (Implicit super constructor Employee() is undefined. Must explicitly invoke another constructor).
      public ProductionWorker(int shift, double hourlyrate)
      {
            setShift(shift);
            setHourlyPayRate(hourlyrate);
      }

      public void setShift(int s)
      {
            shift = s;
      }
      public void setHourlyPayRate(double rate)
      {
            hourlyrate = rate;
      }

      public int getShift()
      {
            return shift;
      }
      public double getHourlyPayRate()
      {
            return hourlyrate;
      }
}
link|improve this question

75% accept rate
put a default constructor in your Employee class. public Employee(){} – user489041 Mar 30 '11 at 15:13
feedback

5 Answers

up vote 1 down vote accepted

Any constructor for any class as you know creates an object. So, the constructor should contain proper initialization code for its class. But if you have some class which extends another one (lets call it "parent") then constructor for the class cannot contain all the code needed for the initialization by definition (for example, you cannot define private fields of the parent). That's why constructor of the class has to call constructor of its parent. If you do not call it explicitly then the default parent constructor is called (which is without any parameter).

So, in your case, you can either implement default constructor in parent or directly call any constructor in the class.

link|improve this answer
Default constructor like this public Employee(String hourlyrate, String shift) { shift = ""; hourlyrate = ""; } – user659658 Mar 30 '11 at 15:17
No, a default constructor means a constructor without parameters, such as public Employee(){} – Erkan Haspulat Mar 30 '11 at 15:18
I did this and still get the same error. – user659658 Mar 30 '11 at 15:19
No, "default constructor" is a constructor which doesn't take any parameter: public Employee() { /* Code here */ } – xappymah Mar 30 '11 at 15:19
1  
Constructors don't create objects, they only initialize them. – Joachim Sauer Mar 30 '11 at 15:40
show 2 more comments
feedback

As others have already mentioned you are required to provide a default constructor public Employee(){} in your Employee class.

What happens is that the compiler automatically provides a no-argument, default constructor for any class without constructors. If your class has no explicit superclass, then it has an implicit superclass of Object, which does have a no-argument constructor. If you are explicitly inheriting from a class other than Object then you must provide it. Since in this case you are inheriting in your ProductionWorker class from Employee. Hence the need of the no argument constructor.

Having said that Employee class should look like this:

Your class Employee

import java.util.Date;

public class Employee
{
      private String name, number;
      private Date date;

      public Employee(){} // No-argument Constructor

      public Employee(String name, String number, Date date)
      {
            setName(name);
            setNumber(number);
            setDate(date);
      }

      public void setName(String n)
      {
            name = n;
      }
      public void setNumber(String n)
      {
            number = n;
            // you can check the format here for correctness
      }
      public void setDate(Date d)
      {
            date = d;
      }

      public String getName()
      {
            return name;
      }
      public String getNumber()
      {
            return number;
      }
      public Date getDate()
      {
            return date;
      }
}

Here is the Java Oracle tutorial - Providing Constructors for Your Classes chapter. Go through it and you will have a clearer idea of what is going on.

link|improve this answer
feedback

An explicit call to a parent class constructor is required any time the parent class lacks a no-argument constructor. You can either add a no-argument constructor to the parent class or explicitly call the parent class constructor in your child class.

link|improve this answer
feedback

ProductionWorker extends Employee, thus it is said that it has all the capabilities of an Employee. In order to accomplish that, Java automatically puts a super(); call in each constructor's first line, you can put it manually but usually it is not necessary. In your case, it is necessary because the call to super(); cannot be placed automatically due to the fact that Employee's constructor has parameters.

You either need to define a default constructor in your Employee class, or call super('Erkan', 21, new Date()); in the first line of the constructor in ProductionWorker.

link|improve this answer
It has nothing to do with the parameter types. An explicit call to a parent class constructor is required because the parent doesn't have a no-arg constructor. – Isaac Truett Mar 30 '11 at 15:20
@Isaac, agreed and edited thanks.. – Erkan Haspulat Mar 30 '11 at 15:25
feedback

I also had a similar problem. In my case, I had set the execution environment to be JavaSE 1.7 but I didnt have a compatible JRE. So, I removed it and choose J2SE1.5 for which I had the compatible JRE (ie., JVM 1.5.0).

link|improve this answer
This won't work here, see the other answers for solutions. – Philipp Wendler Oct 16 '11 at 19:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.