What will be printed out as a result of the following code execution?
#include <iostream>
using namespace std; 

class A { 
public: 
    A() {} 
    ~A() {} 
    void f(){cout<<"A::f();"<<endl;}
}; 
 
class B: virtual public A { 
public: 
    B() {} 
    ~B() {}
    void f(){cout<<"B::f();"<<endl;}
}; 

int main(){
     A * a = new B();
     B * b = dynamic_cast<B *>(a);
     b->f();
     delete a;
}

Слідкуй за CodeGalaxy

Мобільний додаток Beta

Get it on Google Play
Зворотній Зв’язок
Cosmo
Зареєструйся Зараз
або Підпишись на майбутні тести