One of hundreds of answers available with our premium content service.
A: It is only possible to call a concrete method of an abstract class when the method is instantiated through a concrete subclass. The method must also have a public or package visibility modifier that makes it accessible to the calling class. When you call the method on the subclass, it implicitly invokes superclass implementation, as in the example below.
… full answer hidden
Premium members click below for full answer
How can I call a concrete instance method on an abstract class?