java中父类的私有方法可以被子类继承吗?

如题所述

第1个回答  2008-07-01
私有的不行 公有的和保护的才可以

不能调用那是继承了个P呀
第2个回答  2008-07-01
不能。
第3个回答  2018-06-18
看Oracle的官方文档
http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html

A subclass does not inherit the private members of its parent class. However, if the superclass has public or protected methods for accessing its private fields, these can also be used by the subclass.

说的很明白,子类不能继承父类的私有成员,但可以通过父类的public或protected方法访问。
第4个回答  2008-07-01
都说是私有了,怎么能被其他类调用呢
相似回答