请输出下面程序的运行结果。
#include
using namespace std;
class B
{
protected:
int x, y;
public:
B(int x1, int y1)
{
x = x1;
y = y1;
}
virtual void compute() { cout << x + y << endl; };
};
class D : public B
{
private:
int a, b;
public:
D(int x1, int y1, int a1, int b1) : B(x1, y1)
{
a = a1;
b = b1;
}
void compute() { cout << x + y + a + b << endl; }
};
int main()
{
B *a[2] = {new B(1, 2),
new D(2, 3, 4, 5)};
for (int i = 0; i < 2; i++)
a[i]->compute();
}
查看答案和解析【26考研辅导课程推荐】:26考研集训课程,VIP领学计划,26考研VIP全科定制套餐(公共课VIP+专业课1对1) , 这些课程中都会配有内部讲义以及辅导书和资料,同时会有教研教辅双师模式对大家进行教学以及督学,并配有24小时答疑和模拟测试等,可直接咨询在线客服老师领取大额优惠券。
启航教育热门私房课
MORE小班面授 名额有限 抢先体验
编辑推荐
最新内容