inheritance - Java compiler error: "cannot find symbol constructor .."? -
i'm writing code employee, manager, hourly worker class assignment i've hit problem can't figure out, following code employee followed hourly worker. problem hourly worker won't compile, it's giving "cannot find symbol constructor employee" error when try compile (employee class compiiles without issue. suggestions please? think i've been staring @ long can no longer see problem! thanks. pieter. employee class - public class employee { public string firstname; public string lastname; public double hourlyrate; final static double normal_workweek = 37.5; public employee(string firstname, string lastname, double hourlyrate) { setfirstname(firstname); setlastname(lastname); sethourlyrate(hourlyrate); } //accessor , mutator methods employee's first name. public string getfirstname() { return firstname; } public void setfirstname(string firstname) { firstna...