I am using Eclipse Neon on windows 10, attempting to run the ManagerTest.java file from CoreJava 5.2 video and book.
There is a main type but for some reason, Eclipse is not recognizing it:
I have tried adding inheritance as the source file in the Build Path, and that did not work. I also tried moving ManagerTest.java into the src folder but that did not work as well.
Each time I right click on the file and Run As a Java Application, I get the error.
Thanks in advance for your help.
Here is the code:
package inheritance;
/**
* This program demonstrates inheritance.
* @version 1.21 2004-02-21
* @author Cay Horstmann
*/
public class ManagerTest
{
public static void main(String[] args)
{
// construct a Manager object
Manager boss = new Manager("Carl Cracker", 80000, 1987, 12, 15);
boss.setBonus(5000);
Employee[] staff = new Employee[3];
// fill the staff array with Manager and Employee objects
staff[0] = boss;
staff[1] = new Employee("Harry Hacker", 50000, 1989, 10, 1);
staff[2] = new Employee("Tommy Tester", 40000, 1990, 3, 15);
// print out information about all Employee objects
for (Employee e : staff)
System.out.println("name=" + e.getName() + ",salary=" + e.getSalary());
}
}