How to access the private variables of a class in its subclass?

前端 未结 28 2304
清歌不尽
清歌不尽 2020-12-17 09:46

This is a question I was asked in an interview: I have class A with private members and Class B extends A. I know private members of a class cannot be accessed, but the qu

28条回答
  •  無奈伤痛
    2020-12-17 10:35

    If I'm understanding the question correctly, you could change private to protected. Protected variables are accessible to subclasses but behave like private variables otherwise.

提交回复
热议问题