I have a public abstract class named EmployeeFileProcessor, which is also what I am trying to instantiate. How would I easily fix this code so that I can instantiate this?
public abstract class EmployeeFileProcessor
{
public static void main(String[] args) throws Exception
{
EmployeeFileProcessor process = new EmployeeFileProcessor();
//Non important code here
process.writeFullTimeEmployee(user_input1, FtCollection[0]);
//Defined in another class (method writeFullTimeEmployee)
process.readFulltimeEmployee(user_input1);
//Defined in another class (method readFullTimeEmployee)
}
}
How would I be able to use the 'process'?
You cannot directly create an instance of an abstract class. You must first define a class that extends the abstract class and then create an instance of that class.
e.g.
You can then create instances of ConcreteEmployeeFileProcessor but reference it using the abstract type.