I'm pretty new to Java, so far I've managed to do most stuff on my own, however I bumped into something that I can't seem to accomplish on my own, I made a project with several classes as below:
- Code: Select all
class A
class B class C
class D class E
Class A is the superclass and would be divided into class B and class C(which has two sub-classes(D + E)), I can access the class A's constructor from class B with super(), but how do I access Class A's constructor from class D or class E?
tia


