当前位置:   article > 正文

C++面向对象的程序设计谭浩强 第五章课后题_有以下程序结构,请分析访问权限

有以下程序结构,请分析访问权限

以往章节

C++面向对象的程序设计谭浩强 第二章课后题

C++面向对象的程序设计谭浩强 第三章课后题

C++面向对象的程序设计谭浩强 第四章课后题

C++面向对象的程序设计谭浩强 第五章课后题

C++面向对象的程序设计谭浩强 第六章课后题

C++面向对象的程序设计谭浩强 第七章课后题

C++面向对象的程序设计谭浩强 第八章课后题

1. (简答题) 将例5.1的程序片段补充和改写成一个完整、正确的程序,用公用继承方式。在程序中应包括输入数据的函数,在程序运行时输入num,name,sex,age,addr的值,程序应输出以上5个数据的值。

  1. #include <iostream>
  2. using namespace std;
  3. class Student {
  4. public:
  5. void get_value()
  6. {
  7. cin >> num >> name >> sex;
  8. }
  9. void display()
  10. {
  11. cout << "num: " << num << endl;
  12. cout << "name: " << name << endl;
  13. cout << "sex: " << sex << endl;
  14. }
  15. private:
  16. int num;
  17. string name;
  18. char sex;
  19. };
  20. class Student1 :public Student
  21. {
  22. public:
  23. void get_value1() {
  24. get_value();
  25. cin >> age >> addr;
  26. }
  27. void display_1() {
  28. display();
  29. cout << "age: " << age << endl;
  30. cout << "address: " << addr << endl;
  31. }
  32. private:
  33. int age;
  34. string addr;
  35. };
  36. int main()
  37. {
  38. Student1 s1;
  39. s1.get_value1();
  40. s1.display_1();
  41. return 0;
  42. }

2. (简答题) 将例5.2的程序片段补充和改写成一个完整、正确的程序,用私有继承方式。在程序中应包括输入数据的函数,在程序运行时输入num,name,sex,age,addr的值,程序应输出以上5个数据的值。

  1. #include <iostream>
  2. using namespace std;
  3. class Student
  4. {
  5. public:
  6. void get_value() {
  7. cin >> num >> name >> sex;
  8. }
  9. void display() {
  10. cout << "num: " << num << endl;
  11. cout << "name: " << name << endl;
  12. cout << "sex: " << sex << endl;
  13. }
  14. private:
  15. int num;
  16. string name;
  17. char sex;
  18. };
  19. class Student1 : private Student
  20. {
  21. public:
  22. void get_value1() {
  23. get_value();
  24. cin >> age >> addr;
  25. }
  26. void display_1() {
  27. display();
  28. cout << "age: " << age << endl;
  29. cout << "address: " << addr << endl;
  30. }
  31. private:
  32. int age;
  33. string addr;
  34. };
  35. int main()
  36. {
  37. Student1 s1;
  38. s1.get_value1();
  39. s1.display_1();
  40. return 0;
  41. }

3. (简答题) 将例5.3的程序修改、补充,写成一个完整、正确的程序,用保护继承方式。在程序中应包括输入数据的函数。

  1. #include <iostream>
  2. using namespace std;
  3. class Student
  4. {
  5. public:
  6. void display()
  7. {
  8. cout << "num: " << num << endl;
  9. cout << "name: " << name << endl;
  10. cout << "sex: " << sex << endl;
  11. }
  12. protected:
  13. int num;
  14. string name;
  15. char sex;
  16. };
  17. class Student1 : protected Student
  18. {
  19. public:
  20. void get_value() {
  21. cin >> num >> name >> sex >> age >> addr;
  22. }
  23. void display_1() {
  24. display();
  25. cout << "age: " << age << endl;
  26. cout << "address: " << addr << endl;
  27. }
  28. private:
  29. int age;
  30. string addr;
  31. };
  32. int main()
  33. {
  34. Student1 s1;
  35. s1.get_value();
  36. s1.display_1();
  37. return 0;
  38. }

4. (简答题)  修改例5.3的程序,改为用公用继承方式。上机调试程序,使之能正确运行并得到正确的结果。对这两种继承方式作比较分析,考虑在什么情况下二者不能互相代替。

  1. #include <iostream>
  2. using namespace std;
  3. class Student
  4. {
  5. public:
  6. void display()
  7. {
  8. cout << "num: " << num << endl;
  9. cout << "name: " << name << endl;
  10. cout << "sex: " << sex << endl;
  11. }
  12. protected:
  13. int num;
  14. string name;
  15. char sex;
  16. };
  17. class Student1 : public Student
  18. {
  19. public:
  20. void get_value() {
  21. cin >> num >> name >> sex >> age >> addr;
  22. }
  23. void display_1() {
  24. display();
  25. cout << "age: " << age << endl;
  26. cout << "address: " << addr << endl;
  27. }
  28. private:
  29. int age;
  30. string addr;
  31. };
  32. int main()
  33. {
  34. Student1 s1;
  35. s1.get_value();
  36. s1.display_1();
  37. return 0;
  38. }
  39. //派生类公用继承的情况下,类内类外皆可访问基类public成员
  40. //派生类保护继承的情况下,类内可以访问public成员,类外不可以用派生类访问基类public成员

5. (简答题)有以下程序结构,请分析访问属性。

  1. class A//A为基类
  2. {public:
  3. void f1( );
  4. int i;
  5. protected:
  6. void f2( );
  7. int j;
  8. private:
  9. int k;
  10. };
  11. class B: public A //B为A的公用派生类
  12. {public:
  13. void f3( );
  14. protected:
  15. int m;
  16. private:
  17. int n;
  18. };
  19. class C: public B //C为B的公用派生类
  20. {public:
  21. void f4( );
  22. private:
  23. int p;
  24. };
  25. int main( )
  26. {A a1; //a1是基类A的对象
  27. B b1; //b1是派生类B的对象
  28. C c1; //c1是派生类C的对象
  29. return 0;
  30. }

问: 

(1) 在main函数中能否用b1.i,b1.j和b1.k引用派生类B对象b1中基类A的成员?

(2) 派生类B中的成员函数能否调用基类A中的成员函数f1和f2?

(3) 派生类B中的成员函数能否引用基类A中的数据成员i,j,k?

(4) 能否在main函数中用c1.i,c1.j,c1.k,c1.m,c1.n,c1.p引用基类A的成员i,j,k,派生类B的成员m,n,以及派生类C的成员p?

(5) 能否在main函数中用c1.f1(),c1.f2(),c1.f3()和c1.f4()调用f1,f2,f3,f4成员函数?

(6) 派生类C的成员函数f4能否调用基类A中的成员函数f1,f2和派生类中的成员函数f3?

  1. b1.i可以因为i是public且是公有继承,b1.j、b1.k不可以,j是保护成员,k是私有成员,类外不可访问

  2. 都可以因为 f1 f2一个是公用类一个是保护类,继承过来是派生类的公用成员和保护成员,而私有类还是基类的私有成员没有成为派生类的私有成员调用还得是基类成员函数调用

  3. i和j可以,k不可以,因为k是基类A中的私有成员

  4. c1.i可,其他的保护类、私有类都不可在类外使用

  5. f1()、f3()、f4()可以,f2()不可以

  6. 都可以 跟2一样

6. (简答题)有以下程序结构,请分析所有成员在各类的范围内的访问权限。

  1. class A
  2. {public:
  3. void f1( );
  4. protected:
  5. void f2( );
  6. private:
  7. int i;
  8. };
  9. class B: public A
  10. {public:
  11. void f3( );
  12. int k;
  13. private:
  14. int m;
  15. };
  16. class C: protected B
  17. {public:
  18. void f4( );
  19. protected:
  20. int m;
  21. private:
  22. int n;
  23. };
  24. class D: private C
  25. {public:
  26. void f5( );
  27. protected:
  28. int p;
  29. private:
  30. int q;
  31. };
  32. int main()
  33. {A a1;
  34. B b1;
  35. C c1;
  36. D d1;
  37. }

A类:

在main函数中用a1能调用A类成员函数f1()在A中成员函数中可以调用i,f1(),f2().

B类:

在main函数中用b1能调用A类成员函数f1()以及派生类B类中的f3()和k在B中成员函数中可调用f1(),f2(),k,m

C类:

在main函数中用c1能调用C类中的f4()在C中成员函数可以调用f1(),f2(),f3(),k,m,n

D类:

在main函数中用d1只能调用D类成员函数f5()在D中成员函数中可调用f1(),f2(),f3(),k,f4(),C中的m,p, q

7. (简答题)有以下程序,请完成下面工作: 

① 阅读程序,写出运行时输出的结果。

② 然后上机运行,验证结果是否正确。

③ 分析程序执行过程,尤其是调用构造函数的过程。

  1. #include <iostream>
  2. using namespace std;
  3. class A
  4. {public:
  5. A( ){a=0;b=0;}
  6. A(int i){a=i;b=0;}
  7. A(int i,int j){a=i;b=j;}
  8. void display( ){cout<<″a=<<a<<″ b=<<b;}
  9. private:
  10. int a;
  11. int b;
  12. };
  13. class B : public A
  14. {public:
  15. B( ){c=0;}
  16. B(int i):A(i){c=0;}
  17. B(int i,int j):A(i,j){c=0;}
  18. B(int i,int j,int k):A(i,j){c=k;}
  19. void display1( )
  20. {display();
  21. cout<<″ c=<<c<<endl;
  22. }
  23. private:
  24. int c;
  25. };
  26. int main( )
  27. { B b1;
  28. B b2(1);
  29. B b3(1,3);
  30. B b4(1,3,5);
  31. b1.display1( );
  32. b2.display1( );
  33. b3.display1( );
  34. b4.display1( );
  35. return 0;
  36. }
  1. #include<iostream>
  2. using namespace std;
  3. class A {
  4. public:
  5. A(){a = 0;b = 0;}
  6. A(int i){a = i;b = 0;}
  7. A(int i, int j){a = i;b = j;}
  8. void display()
  9. {
  10. cout << "a = " << a << " b = " << b;
  11. }
  12. private:
  13. int a, b;
  14. };
  15. class B : public A {
  16. public:
  17. B(){c = 0;}
  18. B(int i) : A(i){c = 0;}
  19. B(int i, int j) : A(i, j){c = 0;}
  20. B(int i, int j, int k) : A(i, j){c = k;}
  21. void display1()
  22. {
  23. display();
  24. cout << " c = " << c << endl;
  25. }
  26. private:
  27. int c;
  28. };
  29. int main()
  30. {
  31. B b1;
  32. B b2(1);
  33. B b3(1, 3);
  34. B b4(1, 3, 5);
  35. b1.display1();
  36. b2.display1();
  37. b3.display1();
  38. b4.display1();
  39. return 0;
  40. }

8. (简答题)有以下程序,请完成下面工作: 

① 阅读程序,写出运行时输出的结果。

② 然后上机运行,验证结果是否正确。

③ 分析程序执行过程,尤其是调用构造函数和析构函数的过程。

  1. #include <iostream>
  2. using namespace std;
  3. class A
  4. {public:
  5. A( ){cout<<″constructing A ″<<endl;}
  6. ~A( ){cout<<″destructing A ″<<endl;}
  7. };
  8. class B : public A
  9. {public:
  10. B( ){cout<<″constructing B ″<<endl;}
  11. ~B( ){cout<<″destructing B ″<<endl;}
  12. };
  13. class C : public B
  14. {public:
  15. C( ){cout<<″constructing C ″<<endl;}
  16. ~C( ){cout<<″destructing C ″<<endl;}
  17. };
  18. int main( )
  19. {C c1;
  20. return 0;
  21. }

9. (简答题)分别定义Teacher(教师)类和Cadre(干部)类,采用多重继承方式由这两个类派生出新类Teacher_Cadre(教师兼干部)。要求: 

① 在两个基类中都包含姓名、年龄、性别、地址、电话等数据成员。

② 在Teacher类中还包含数据成员title(职称),在Cadre类中还包含数据成员post(职务), 在Teacher_Cadre类中还包含数据成员wages(工资)。

③ 对两个基类中的姓名、年龄、性别、地址、电话等数据成员用相同的名字,在引用这些数据成员时,指定作用域。

④ 在类体中声明成员函数,在类外定义成员函数。

⑤ 在派生类Teacher_Cadre的成员函数show中调用Teacher类中的display函数,输出姓名、年龄、性别、职称、地址、电话,然后再用cout语句输出职务与工资。

  1. #include<iostream>
  2. using namespace std;
  3. class Teacher {
  4. public:
  5. Teacher(char* p, int a, char s, char* ad, int pn, char* t);
  6. void display();
  7. private:
  8. char name[10];
  9. int age;
  10. char sex;
  11. char address[20];
  12. int phonenum;
  13. char title[10];
  14. };
  15. class Cadre {
  16. public:
  17. Cadre(char* p, int a, char s, char* ad, int pn, char* pos);
  18. char* get_post();
  19. private:
  20. char name[10];
  21. int age;
  22. char sex;
  23. char address[20];
  24. int phonenum;
  25. char post[10];
  26. };
  27. class Teacher_Cadre : public Teacher, public Cadre {
  28. public:
  29. Teacher_Cadre(char* p, int a, char s, char* ad, int pn, char* t, char* pos, int w) :Teacher(p, a, s, ad, pn, t), Cadre(p, a, s, ad, pn, pos)
  30. {
  31. wages = w;
  32. }
  33. void display_all();
  34. private:
  35. int wages;
  36. };
  37. Teacher::Teacher(char* p, int a, char s, char* ad, int pn, char* t)
  38. {
  39. strcpy_s(name, p);
  40. age = a;
  41. sex = s;
  42. strcpy_s(address, ad);
  43. phonenum = pn;
  44. strcpy_s(title, t);
  45. }
  46. Cadre::Cadre(char* p, int a, char s, char* ad, int pn, char* pos)
  47. {
  48. strcpy_s(name, p);
  49. age = a;
  50. sex = s;
  51. strcpy_s(address, ad);
  52. phonenum = pn;
  53. strcpy_s(post, pos);
  54. }
  55. char* Cadre::get_post()
  56. {
  57. return post;
  58. }
  59. void Teacher::display()
  60. {
  61. cout << "姓名:" << name << endl;
  62. cout << "年龄:" << age << endl;
  63. cout << "性别:" << sex << endl;
  64. cout << "地址:" << address << endl;
  65. cout << "手机号码:" << phonenum << endl;
  66. cout << "职称:" << title << endl;
  67. }
  68. void Teacher_Cadre::display_all()
  69. {
  70. Teacher::display();
  71. cout << "职务:" << get_post() << endl;
  72. cout << "薪水:" << wages << endl;
  73. }
  74. int main()
  75. {
  76. char name[10] = "小明";
  77. char address[20] = "西安工业大学";
  78. char title[10] = "老师";
  79. char post[10] = "校长";
  80. Teacher_Cadre tc(name, 21, 'm', address, 110120119, title, post, 666666);
  81. tc.display_all();
  82. return 0;
  83. }

10. (简答题) 将本章5.8节中的程序片段加以补充完善,成为一个完整的程序。在程序中使用继承和组合。在定义Professor类对象prof1时给出所有数据的初值,然后修改prof1的生日数据,最后输出prof1的全部最新数据。

  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. class Teacher
  5. {
  6. public:
  7. Teacher(){}
  8. Teacher(int n, string nam, char s)
  9. {
  10. num = n;
  11. name = nam;
  12. sex = s;
  13. }
  14. void display()
  15. {
  16. cout << "num: " << num << endl;
  17. cout << "name: " << name << endl;
  18. cout << "sex: " << sex << endl;
  19. }
  20. protected:
  21. int num;
  22. string name;
  23. char sex;
  24. };
  25. class BirthDate
  26. {
  27. public:
  28. BirthDate(){}
  29. BirthDate(int y, int m, int d)
  30. {
  31. year = y;
  32. month = m;
  33. day = d;
  34. }
  35. void display1() {
  36. cout << "birthdate: " << year << " " << month << " " << day << endl;
  37. }
  38. protected:
  39. int year;
  40. int month;
  41. int day;
  42. };
  43. class Professor : public Teacher
  44. {
  45. public:
  46. Professor(int n, string nam, char s, BirthDate bd) {
  47. num = n; name = nam; sex = s; birthday = bd;
  48. }
  49. void show() {
  50. display();
  51. birthday.display1();
  52. }
  53. BirthDate birthday;
  54. };
  55. int main()
  56. {
  57. BirthDate bd(2001, 5, 25);
  58. Professor prof1(101, "xzh", 'm', bd);
  59. BirthDate nbd(2002, 5, 15);
  60. prof1.birthday = nbd;
  61. prof1.show();
  62. return 0;
  63. }

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/106056
推荐阅读
相关标签
  

闽ICP备14008679号