#include "stdio.h"
class Super1 {
public:
void Count() { printf("%d", 1); }
};
class Super2 {
public:
void Count() { printf("%d", 2); }
};
class Child : public Super1, Super2 { };
int main() {
Child obj;
obj.Count();
return 0;
}
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать