A question about inheritance# Java - 爪哇娇娃
s*n
1 楼
Class A extends B;
Class B extends C;
I can call B's method from A by the keyword "super()", and call C's methods
from B, too.
but how can I call C's methods from A?
Thanks!
Class B extends C;
I can call B's method from A by the keyword "super()", and call C's methods
from B, too.
but how can I call C's methods from A?
Thanks!