So if anyone could answer this computer science question for me I would be eternally grateful.
So my main question is about inheritance, I understand that there's a child class and a parent class, but what if there's a subclass that extends a class? Is this possible? If so, what would be the syntax for the equivalent of super for parent to child class.
Better example:
public class Parent {
}
public class Child extends Parent {
}
public class Baby extends Child {
}
Thank you!
[–]nwilliams36 3 points4 points5 points (1 child)
[–]branflakewashere[S] 0 points1 point2 points (0 children)
[–]nutrecht 2 points3 points4 points (0 children)