第10週第11週項目1読解プログラム(7)
906 ワード
/*
*Copyright (c) 2016,
*All rights reserved.
* :
* :
* : 2016 5 9
* : v1.0
*
* :
* :
* :
*/
#include <iostream>
using namespace std;
class A
{
protected:
int a,b;
public:
A(int aa, int bb):a(aa), b(bb) {}
void printA(){
cout<<"a: "<<a<<"\tb: "<<b<<endl;
}
};
class B: public A
{
int c;
public:
B(int aa, int bb, int cc):A(aa,bb),c(cc) {}
void printB()
{
cout<<"a: "<<a<<"\tb: "<<b<<"\tc: "<<c<<endl;
}
};
int main()
{
A a(1,1);
B b(2,3,4);
A &r1=a;
A &r2=b;
r1.printA();
r2.printA();
//
return 0;
}
分析:
エラー行r 2が削除された.printB();
実行結果はa:1 b:1だと思います.
実際の実行結果はa:1 b:1 a:2 b:3