Which methods can a subclass inherit in Java?

后端 未结 6 1569
说谎
说谎 2021-02-09 19:12

Sorry I am a newbie to Java. I am trying to get my head around inheritance and subclass/superclass relationships in Java.

If classA is a subclass of classB, will classA\

6条回答
  •  忘掉有多难
    2021-02-09 19:31

    Private methods are not inherited. Only protected, public and default methods are inherited.

    Class A will provide the methods that are public in both classA and ClassB

提交回复
热议问题