(1)问题及代码:
/*
*Copyright (c)2014,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:Project.cpp
*作 者:chenqin.
*完成日期:2015年5月27日
*版 本 号: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=b;
a.printA();
b.printA();
b.printB();//此处加入下面各小题中的代码
return 0;
}
运行结果:
(2)阅读程序:
/*
*Copyright (c)2014,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:Project.cpp
*作 者:chenqin.
*完成日期:2015年5月27日
*版 本 号: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);
b=a;
a.printA();
b.printA();
b.printB();//此处加入下面各小题中的代码
return 0;
}
(2)运行结果:
发生错误:||=== ee, Debug ===|
C:\Documents and Settings\Administrator\桌面\ee\main.cpp||In function 'int main()':|
C:\Documents and Settings\Administrator\桌面\ee\main.cpp|40|error: no match for 'operator=' in 'b = a'|
C:\Documents and Settings\Administrator\桌面\ee\main.cpp|40|note: candidate is:|
C:\Documents and Settings\Administrator\桌面\ee\main.cpp|26|note: B& B::operator=(const B&)|
C:\Documents and Settings\Administrator\桌面\ee\main.cpp|26|note: no known conversion for argument 1 from 'A' to 'const B&'|
||=== Build finished: 1 errors, 0 warnings (0 minutes, 0 seconds) ===|
(2)知识点总结:派生类的数据成员可以赋值给基类,但是基类的不可以赋值给派生类的。因为派生类比基类的数据成员多了一项,若将基类的赋值给派生类,则会有的项会有不确定值,导致问题,而将派生类赋值给基类时,选择舍弃派生类自己多的那一项。
(3)阅读程序:
/*
*Copyright (c)2014,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:Project.cpp
*作 者:chenqin.
*完成日期:2015年5月27日
*版 本 号: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();
r2.printB();//此处加入下面各小题中的代码
return 0;
}
(3)运行结果:
发生错误:C:\Documents and Settings\Administrator\桌面\ee\main.cpp|44|error: 'class A' has no member named 'printB'|
(3)知识点总结:赋值是对数据成员进行复制,而对于成员函数是不存在赋值的;赋值后不能企图用对象访问派生类的成员。
(4)阅读程序:
/*
*Copyright (c)2014,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:Project.cpp
*作 者:chenqin.
*完成日期:2015年5月27日
*版 本 号: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 *p=&a;
p->printA();
p=&b;
p->printA();
p->printB();//此处加入下面各小题中的代码
return 0;
}
(4)运行结果:
发生错误:C:\Documents and Settings\Administrator\桌面\ee\main.cpp|44|error: 'class A' has no member named 'printB'|
删除p->printB();这一语句:
(5)问题及代码:
/*
*Copyright (c)2014,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:Project.cpp
*作 者:chenqin.
*完成日期:2015年5月27日
*版 本 号: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);
void f(A x)
{
cout<<"aaaaah, my a: "<<x.getA()<<endl;
}
//此处加入下面各小题中的代码
return 0;
}
在class A中增加成员函数:
int getA(){return a;}
在main函数前增加一般函数:
void f(A x)
{
cout<<"aaaaah, my a: "<<x.getA()<<endl;
}
main函数中指定部分为:
f(a);
f(b);
(5)运行结果:
发生错误:C:\Documents and Settings\Administrator\桌面\ee\main.cpp|41|error: a function-definition is not allowed here before '{' token|