Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 C++ 中,如果基类的公共虚函数引用了私有成员字段,并且派生类没有覆盖此方法,那么该引用将指向派生类的私有成员
基类的方法仍然会作用于基类的成员,即使您将同名的成员添加到派生类(我猜,这就是您想要表达的观点)。
不,如果您不覆盖该方法,它将像从基类内部一样被调用,从而引用基类内部的私有方法。