Which methods can a subclass inherit in Java?

后端 未结 6 1444
说谎
说谎 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:28

    ClassA will inherit all of classB's public and protected methods. It will NOT include classB's private methods.

提交回复
热议问题