11
C ++ 'da sanal temel sınıf nedir?
" Sanal temel sınıf " ın ne olduğunu ve ne anlama geldiğini bilmek istiyorum . Bir örnek göstereyim: class Foo { public: void DoSomething() { /* ... */ } }; class Bar : public virtual Foo { public: void DoSpecific() { /* ... */ } };