[Solved] GeometricObject and circle class
If you mean why can’t you invoke the getArea() and getPerimeter() methods, it is because they are abstract. You cannot invoke an abstract method. An abstract method must have an implementation in a concrete class. Also, you cannot instantiate an interface or an abstract class. You can only instantiate concrete classes (and they may implement … Read more