实验4

task1

1.源代码

GradeCalc.hpp

 1 #pragma once
 2 
 3 #include <vector>
 4 #include <array>
 5 #include <string>
 6 
 7 class GradeCalc {
 8 public:
 9     GradeCalc(const std::string &cname);      
10     void input(int n);                         // 录入n个成绩
11     void output() const;                      // 输出成绩
12     void sort(bool ascending = false);        // 排序 (默认降序)
13     int min() const;                          // 返回最低分(如成绩未录入,返回-1)
14     int max() const;                          // 返回最高分 (如成绩未录入,返回-1)
15     double average() const;                   // 返回平均分 (如成绩未录入,返回0.0)
16     void info();                      // 输出课程成绩信息 
17 
18 private:
19     void compute();     // 成绩统计
20 
21 private:
22     std::string course_name;     // 课程名
23     std::vector<int> grades;     // 课程成绩
24     std::array<int, 5> counts;      // 保存各分数段人数([0, 60), [60, 70), [70, 80), [80, 90), [90, 100]
25     std::array<double, 5> rates;    // 保存各分数段人数占比 
26     bool is_dirty;      // 脏标记,记录是否成绩信息有变更
27 };

GradeCalc.cpp

  1 #include <algorithm>
  2 #include <array>
  3 #include <cstdlib>
  4 #include <iomanip>
  5 #include <iostream>
  6 #include <numeric>
  7 #include <string>
  8 #include <vector>
  9 
 10 #include "GradeCalc.hpp"
 11 
 12 GradeCalc::GradeCalc(const std::string &cname):course_name{cname},is_dirty{true} {
 13     counts.fill(0);
 14     rates.fill(0);   
 15 }
 16 
 17 void GradeCalc::input(int n) {
 18     if(n < 0) {
 19         std::cerr << "无效输入! 人数不能为负数\n";
 20         std::exit(1);
 21     }
 22 
 23     grades.reserve(n);
 24 
 25     int grade;
 26 
 27     for(int i = 0; i < n;) {
 28         std::cin >> grade;
 29 
 30         if(grade < 0 || grade > 100) {
 31             std::cerr << "无效输入! 分数须在[0,100]\n";
 32             continue;
 33         }
 34         
 35         grades.push_back(grade);
 36         ++i;
 37     }
 38 
 39     is_dirty = true;  // 设置脏标记:成绩信息有变更
 40 }
 41 
 42 void GradeCalc::output() const {
 43     for(auto grade: grades)
 44         std::cout << grade << ' ';
 45     std::cout << std::endl;
 46 }
 47     
 48 void GradeCalc::sort(bool ascending) {
 49     if(ascending)
 50         std::sort(grades.begin(), grades.end());
 51     else
 52         std::sort(grades.begin(), grades.end(), std::greater<int>());
 53 }
 54 
 55 int GradeCalc::min() const {
 56     if(grades.empty())
 57         return -1;
 58 
 59     auto it = std::min_element(grades.begin(), grades.end());
 60     return *it;
 61 }
 62 
 63 int GradeCalc::max() const {
 64     if(grades.empty()) 
 65         return -1;
 66 
 67     auto it = std::max_element(grades.begin(), grades.end());
 68     return *it;
 69 }
 70 
 71 double GradeCalc::average() const {
 72     if(grades.empty())
 73         return 0.0;
 74 
 75     double avg = std::accumulate(grades.begin(), grades.end(), 0.0)/grades.size();
 76     return avg;
 77 }
 78 
 79 void GradeCalc::info() {
 80     if(is_dirty) 
 81        compute();
 82 
 83     std::cout << "课程名称:\t" << course_name << std::endl;
 84     std::cout << "平均分:\t" << std::fixed << std::setprecision(2) << average() << std::endl;
 85     std::cout << "最高分:\t" << max() << std::endl;
 86     std::cout << "最低分:\t" << min() << std::endl;
 87 
 88     const std::array<std::string, 5> grade_range{"[0, 60) ", 
 89                                            "[60, 70)", 
 90                                            "[70, 80)",
 91                                            "[80, 90)", 
 92                                            "[90, 100]"};
 93     
 94     for(int i = static_cast<int>(grade_range.size())-1; i >= 0; --i)
 95         std::cout << grade_range[i] << "\t: " << counts[i] << "人\t"
 96                   << std::fixed << std::setprecision(2) << rates[i]*100 << "%\n";
 97 }
 98 
 99 void GradeCalc::compute() {
100     if(grades.empty())
101         return;
102 
103     counts.fill(0); 
104     rates.fill(0.0);
105 
106     // 统计各分数段人数
107     for(auto grade:grades) {
108         if(grade < 60)
109             ++counts[0];        // [0, 60)
110         else if (grade < 70)
111             ++counts[1];        // [60, 70)
112         else if (grade < 80)
113             ++counts[2];        // [70, 80)
114         else if (grade < 90)
115             ++counts[3];        // [80, 90)
116         else
117             ++counts[4];        // [90, 100]
118     }
119 
120     // 统计各分数段比例
121     for(size_t i = 0; i < rates.size(); ++i)
122         rates[i] = counts[i] * 1.0 / grades.size();
123     
124     is_dirty = false;  // 更新脏标记
125 }

task1.cpp

 1 #include <iostream>
 2 #include <string>
 3 #include "GradeCalc.hpp"
 4 
 5 void test() {
 6     GradeCalc c1("OOP");
 7 
 8     std::cout << "录入成绩:\n";
 9     c1.input(5);
10 
11     std::cout << "输出成绩:\n";
12     c1.output();
13 
14     std::cout << "排序后成绩:\n";
15     c1.sort(); c1.output();
16 
17     std::cout << "*************成绩统计信息*************\n";
18     c1.info();
19 
20 }
21 
22 int main() {
23     test();
24 }

2.运行结果截图

image

 3.回答问题

问题1:组合关系识别
GradeCalc 类声明中, 逐行写出所有体现"组合"关系的成员声明,并用一句话说明每个被组合对象的功能。
std::vector<int>grades;存储课程名称

std::vector<int> grades;存储成绩列表

std::array<int, 5> counts;存储各分段的人数
std::array<double, 5> rates;存储各分段的比例

问题2:接口暴露理解
如在 test 模块中这样使用,是否合法?如不合法,解释原因。
不合法  grades在GradeCalc中为私有成员,不能在类外通过直接访问vector类中的接口

问题3:架构设计分析
当前设计方案中, compute info 模块中调用:
1)连续打印3次统计信息, compute 会被调用几次?标记 is_dirty 起到什么作用?
调用一次,当is_dirty为false时,说明数据没有进行变更,不需要重新计算,不用再次调用compute,加快运行效率

2)如新增 update_grade(index, new_grade) ,这种设计需要更改 compute 调用位置吗?简洁说明理由。
不需要更改,只需要在执行update_grade(index, new_grade) 中将is_dirty改为true即可

问题4:功能扩展设计
要增加"中位数"统计, 不新增数据成员怎么做?在哪个函数里加?写出伪代码。
在info函数中加

if(grades.size()%2)  cout << grades.at((n-1)/2);

else cout << (grades.at(n/2) + grades.at(n/2+1))/2;

问题5:数据状态管理
GradeCalc compute 中都包含代码: counts.fill(0); rates.fill(0);
compute 中能否去掉这两行?如去掉,在哪种使用场景下会引发统计错误?
能去掉  但在数据进行更新后会引发统计错误

问题6:内存管理理解
input 模块中代码 grades.reserve(n); 如果去掉:
(1)对程序功能有影响吗?(去掉重新编译、运行,观察功能是否受影响)
无影响
2)对性能有影响吗?如有影响,用一句话陈述具体影响。
无影响
 
task2:
1.源代码:
GradeCalc.hpp
 1 #pragma once
 2 
 3 #include <array>
 4 #include <string>
 5 #include <vector>
 6 
 7 class GradeCalc: private std::vector<int> {
 8 public:
 9     GradeCalc(const std::string &cname);      
10     void input(int n);                        // 录入n个成绩
11     void output() const;                      // 输出成绩
12     void sort(bool ascending = false);        // 排序 (默认降序)
13     int min() const;                          // 返回最低分
14     int max() const;                          // 返回最高分
15     double average() const;                   // 返回平均分
16     void info();                              // 输出成绩统计信息 
17 
18 private:
19     void compute();               // 计算成绩统计信息
20 
21 private:
22     std::string course_name;     // 课程名
23     std::array<int, 5> counts;   // 保存各分数段人数([0, 60), [60, 70), [70, 80), [80, 90), [90, 100]
24     std::array<double, 5> rates; // 保存各分数段占比
25     bool is_dirty;      // 脏标记,记录是否成绩信息有变更
26 };

GradeCalc.cpp

  1 #include <algorithm>
  2 #include <array>
  3 #include <cstdlib>
  4 #include <iomanip>
  5 #include <iostream>
  6 #include <numeric>
  7 #include <string>
  8 #include <vector>
  9 #include "GradeCalc.hpp"
 10 
 11 
 12 GradeCalc::GradeCalc(const std::string &cname): course_name{cname}, is_dirty{true}{
 13     counts.fill(0);
 14     rates.fill(0);
 15 }   
 16 
 17 void GradeCalc::input(int n) {
 18     if(n < 0) {
 19         std::cerr << "无效输入! 人数不能为负数\n";
 20         return;
 21     }
 22 
 23     this->reserve(n);
 24 
 25     int grade;
 26 
 27     for(int i = 0; i < n;) {
 28         std::cin >> grade;
 29         if(grade < 0 || grade > 100) {
 30             std::cerr << "无效输入! 分数须在[0,100]\n";
 31             continue;
 32         }
 33 
 34         this->push_back(grade);
 35         ++i;
 36     } 
 37 
 38     is_dirty = true;
 39 }  
 40 
 41 void GradeCalc::output() const {
 42     for(auto grade: *this)
 43         std::cout << grade << ' ';
 44     std::cout << std::endl;
 45 } 
 46 
 47 void GradeCalc::sort(bool ascending) {
 48     if(ascending)
 49         std::sort(this->begin(), this->end());
 50     else
 51         std::sort(this->begin(), this->end(), std::greater<int>());
 52 }  
 53 
 54 int GradeCalc::min() const {
 55     if(this->empty())
 56         return -1;
 57 
 58     return *std::min_element(this->begin(), this->end());
 59 }  
 60 
 61 int GradeCalc::max() const {
 62     if(this->empty())
 63         return -1;
 64 
 65     return *std::max_element(this->begin(), this->end());
 66 }    
 67 
 68 double GradeCalc::average() const {
 69     if(this->empty())
 70         return 0.0;
 71 
 72     double avg = std::accumulate(this->begin(), this->end(), 0.0) / this->size();
 73     return avg;
 74 }   
 75 
 76 void GradeCalc::info() {
 77     if(is_dirty) 
 78         compute();
 79 
 80     std::cout << "课程名称:\t" << course_name << std::endl;
 81     std::cout << "平均分:\t" << std::fixed << std::setprecision(2) << average() << std::endl;
 82     std::cout << "最高分:\t" << max() << std::endl;
 83     std::cout << "最低分:\t" << min() << std::endl;
 84 
 85     const std::array<std::string, 5> grade_range{"[0, 60) ", 
 86                                            "[60, 70)", 
 87                                            "[70, 80)",
 88                                            "[80, 90)", 
 89                                            "[90, 100]"};
 90     
 91     for(int i = static_cast<int>(grade_range.size())-1; i >= 0; --i)
 92         std::cout << grade_range[i] << "\t: " << counts[i] << "人\t"
 93                   << std::fixed << std::setprecision(2) << rates[i]*100 << "%\n";
 94 }
 95 
 96 void GradeCalc::compute() {
 97     if(this->empty())
 98         return;
 99     
100     counts.fill(0);
101     rates.fill(0);
102 
103     // 统计各分数段人数
104     for(int grade: *this) {
105         if(grade < 60)
106             ++counts[0];        // [0, 60)
107         else if (grade < 70)
108             ++counts[1];        // [60, 70)
109         else if (grade < 80)
110             ++counts[2];        // [70, 80)
111         else if (grade < 90)
112             ++counts[3];        // [80, 90)
113         else
114             ++counts[4];        // [90, 100]
115     }
116 
117     // 统计各分数段比例
118     for(size_t i = 0; i < rates.size(); ++i)
119         rates[i] = counts[i] * 1.0 / this->size();
120     
121     is_dirty = false;
122 }

task2.cpp

 1 #include <iostream>
 2 #include <string>
 3 #include "GradeCalc.hpp"
 4 
 5 void test() {
 6     GradeCalc c1("OOP");
 7 
 8     std::cout << "录入成绩:\n";
 9     c1.input(5);
10 
11     std::cout << "输出成绩:\n";
12     c1.output();
13 
14     std::cout << "排序后成绩:\n";
15     c1.sort(); c1.output();
16 
17     std::cout << "*************成绩统计信息*************\n";
18     c1.info();
19 
20 }
21 
22 int main() {
23     test();
24 }

2.运行结果截图

image

 3.回答问题

问题1:继承关系识别
写出 GradeCalc 类声明体现"继承"关系的完整代码行。
class GradeCalc: private std::vector<int>{  }
问题2:接口暴露理解
当前继承方式下,基类 vector<int> 的接口会自动成为 GradeCalc 的接口吗?
如在 test 模块中这样用,能否编译通过?用一句话解释原因。
不会
继承方式是私有继承,基类 vector<int> 中的公有接口不会变成 GradeCalc 的公有接口,会变成私有成员,无法在类外直接访问
问题3:数据访问差异
对比继承方式与组合方式内部实现数据访问的一行典型代码。说明两种方式下的封装差异带来的数据访问接口差
异。
组合方式通过对象grades访问数据
继承方式通过继承的vector<int>中的接口访问数据
问题4:组合 vs. 继承方案选择
你认为组合方案和继承方案,哪个更适合成绩计算这个问题场景?简洁陈述你的结论和理由。
组合方式更适合  组合方式在代码设计上更简洁,可以直接访问vector<int>的公有接口,避免一些不必要的操作
 
task3:
1.源代码
Graph.hpp
 1 #pragma once
 2 
 3 #include <string>
 4 #include <vector>
 5 
 6 enum class GraphType {circle, triangle, rectangle};
 7 
 8 // Graph类定义
 9 class Graph {
10 public:
11     virtual void draw() {}
12     virtual ~Graph() = default;
13 };
14 
15 // Circle类声明
16 class Circle : public Graph {
17 public:
18     void draw();
19 };
20 
21 // Triangle类声明
22 class Triangle : public Graph {
23 public:
24     void draw();
25 };
26 
27 // Rectangle类声明
28 class Rectangle : public Graph {
29 public:
30     void draw();
31 };
32 
33 // Canvas类声明
34 class Canvas {
35 public:
36     void add(const std::string& type);   // 根据字符串添加图形
37     void paint() const;                  // 使用统一接口绘制所有图形
38     ~Canvas();                           // 手动释放资源
39 
40 private:
41     std::vector<Graph*> graphs;          
42 };
43 
44 // 4. 工具函数
45 GraphType str_to_GraphType(const std::string& s);  // 字符串转枚举类型
46 Graph* make_graph(const std::string& type);  // 创建图形,返回堆对象指针

Graph.cpp

 1 #include <algorithm>
 2 #include <cctype>
 3 #include <iostream>
 4 #include <string>
 5 
 6 #include "Graph.hpp"
 7 
 8 // Circle类实现
 9 void Circle::draw()     { std::cout << "draw a circle...\n"; }
10 
11 // Triangle类实现
12 void Triangle::draw()   { std::cout << "draw a triangle...\n"; }
13 
14 // Rectangle类实现
15 void Rectangle::draw()  { std::cout << "draw a rectangle...\n"; }
16 
17 // Canvas类实现
18 void Canvas::add(const std::string& type) {
19     Graph* g = make_graph(type);
20     if (g) 
21         graphs.push_back(g);
22 }
23 
24 void Canvas::paint() const {
25     for (Graph* g : graphs) 
26         g->draw();   
27 }
28 
29 Canvas::~Canvas() {
30     for (Graph* g : graphs) 
31         delete g;
32 }
33 
34 // 工具函数实现
35 // 字符串 → 枚举转换
36 GraphType str_to_GraphType(const std::string& s) {
37     std::string t = s;
38     std::transform(s.begin(), s.end(), t.begin(),
39                    [](unsigned char c) { return std::tolower(c);});
40 
41     if (t == "circle")   
42         return GraphType::circle;
43 
44     if (t == "triangle") 
45         return GraphType::triangle;
46 
47     if (t == "rectangle")
48         return GraphType::rectangle;
49 
50     return GraphType::circle;   // 缺省返回
51 }
52 
53 // 创建图形,返回堆对象指针
54 Graph* make_graph(const std::string& type) {
55     switch (str_to_GraphType(type)) {
56     case GraphType::circle:     return new Circle;
57     case GraphType::triangle:   return new Triangle;
58     case GraphType::rectangle:  return new Rectangle;
59     default: return nullptr;
60     }
61 }

demo3.cpp

 1 #include <string>
 2 #include "Graph.hpp"
 3 
 4 void test() {
 5     Canvas canvas;
 6 
 7     canvas.add("circle");
 8     canvas.add("triangle");
 9     canvas.add("rectangle");
10     canvas.paint();
11 }
12 
13 int main() {
14     test();
15 }

2.运行结果截图

image

 3.回答问题

问题1:对象关系识别
(1)写出Graph.hpp中体现"组合"关系的成员声明代码行,并用一句话说明被组合对象的功能。
std::vector<Graph*> graphs   被组合对象用于存储图形对象的指针
(2)写出Graph.hpp中体现"继承"关系的类声明代码行。
class Circle : public Graph
class Triangle : public Graph
class Rectangle : public Graph
问题2:多态机制观察
(1) Graph 中的 draw 若未声明成虚函数, Canvas::paint() 中 g->draw() 运行结果会有何不同?
会直接调用基类中的draw函数,无法实现多态
(2)若 Canvas 类 std::vector<Graph*> 改成 std::vector<Graph> ,会出现什么问题?
无法调用派生类中的draw函数
(3)若 ~Graph() 未声明成虚函数,会带来什么问题?
通过基类指针删除派生类对象时,只会调用基类的析构函数,可能导致内存泄漏
问题3:扩展性思考
若要新增星形 Star ,需在哪些文件做哪些改动?逐一列出。
Graph.hpp中,在枚举类型中新增Star
添加Star类
Graph.cpp中,实现Star类中的draw函数
在str_to_GraphType函数中新增字符串Star到枚举类型的转换
在make_graph函数中,新增Star的作图
问题4:资源管理
观察 make_graph 函数和 Canvas 析构函数:
(1) make_graph 返回的对象在什么地方被释放?
在Canvas的析构函数中被释放
(2)使用原始指针管理内存有何利弊?
利:灵活,可以直接控制内存分配和释放
弊:容易导致内存泄漏
 
task4:
 1.问题场景描述
设计一个玩具工厂管理系统,包含不同类型的玩具,每个玩具都有不同的功特异功能,要求通过使用组合和继承的方式实现一些基本功能
2.陈述各类之间的关系(继承、组合等)及设计理由
继承:
基类:Toy
派生类:CuddlyToy,ElectronicToy,SportToy
理由:这三大类玩具都是玩具,和玩具之间是is-a关系,所以使用继承关系,在继承中使用虚函数showSpecialFeature()实现多态
组合:
ToyFactory中包含多个Toy*指针
理由:玩具工厂中包含各种玩具,工厂和玩具是has-a关系,所以使用组合关系
3.源代码
Toy.hpp
 1 #pragma once;
 2 
 3 #include<iostream>
 4 #include<string>
 5 
 6 class Toy {
 7 public:
 8     Toy(const std::string Toyname_, const std::string type_);
 9     virtual ~Toy() = default;
10 
11     virtual void ShowSpecialFeature() const {};
12     void display() const;
13 
14 protected:
15     std::string Toyname;
16     std::string type;
17 };
18 
19 class CuddlyToy:public Toy {
20 public:
21     CuddlyToy(const std::string Toyname_);
22     void ShowSpecialFeature() const;
23 };
24 
25 class ElectronicToy :public Toy {
26 public:
27     ElectronicToy(const std::string Toyname_, bool hasBattery_);
28     void ShowSpecialFeature() const;
29 
30 private:
31     bool hasBattery;
32 };
33 
34 class SportToy :public Toy {
35 public:
36     SportToy(const std::string Toyname_, const std::string sportmode_);
37     void ShowSpecialFeature() const;
38 
39 private:
40     std::string sportmode;
41 };

Toy.cpp

 1 #include<iostream>
 2 #include<iomanip>
 3 
 4 #include"Toy.hpp"
 5 
 6 Toy::Toy(const std::string Toyname_, const std::string type_) :Toyname(Toyname_),type(type_){
 7 
 8 }
 9 
10 void Toy::display() const {
11     std::cout << "玩具名称:" << Toyname << std::endl;
12     std::cout << "    类型:" << type << std::endl;
13 }
14 
15 CuddlyToy::CuddlyToy(const std::string Toyname_) :Toy(Toyname_, "毛绒玩具") {
16 
17 }
18 
19 void CuddlyToy::ShowSpecialFeature() const{
20     std::cout << "特异功能:" << "柔软的,可以抱着的\n";
21 }
22 
23 
24 ElectronicToy::ElectronicToy(const std::string Toyname_, bool hasBattery_) :Toy(Toyname_, "电子玩具") ,hasBattery(hasBattery_){
25 
26 }
27 
28 void ElectronicToy::ShowSpecialFeature() const {
29     if (hasBattery) std::cout << "特异功能:" << "需要电池\n";
30     else std::cout << "特异功能:" << "可充电\n";
31 }
32 
33 SportToy::SportToy(const std::string Toyname_, const std::string sportmode_) :Toy(Toyname_, "运动玩具"),sportmode(sportmode_) {
34 
35 }
36 void SportToy::ShowSpecialFeature() const {
37     std::cout << "特异功能:" << "运动方式是" << sportmode << std::endl;
38 }

ToyFactory.hpp

 1 #pragma once
 2 
 3 #include "Toy.hpp"
 4 #include <vector>
 5 
 6 class ToyFactory {
 7 public:
 8     ToyFactory(const std::string name);
 9     ~ToyFactory();
10 
11     void addToy(Toy* toy);
12 
13     void createCuddlyToy(const std::string Toyname_);
14     void createElectronicToy(const std::string Toyname_,bool hasBattery);
15     void createSportToy(const std::string Toyname_,const std::string sportmode_);
16 
17     void displayAllToys() const;
18 
19 
20 private:
21     std::string name;
22     std::vector<Toy*> toys;
23 };

ToyFactory.cpp

 1 #include "ToyFactory.hpp"
 2 #include <iostream>
 3 #include <iomanip>
 4 
 5 ToyFactory::ToyFactory(const std::string name_):name(name_) {
 6     std::cout  << name << " 创建成功!" << std::endl;
 7 }
 8 
 9 ToyFactory::~ToyFactory() {
10     for (auto toy : toys) {
11         delete toy;
12     }
13     toys.clear();
14 }
15 
16 void ToyFactory::addToy(Toy* toy) {
17     if (toy) {
18         toys.push_back(toy);
19     }
20 }
21 
22 void ToyFactory::createCuddlyToy(const std::string Toyname_) {
23     addToy(new CuddlyToy(Toyname_));
24     std::cout << "创建毛绒玩具: " << Toyname_ << std::endl;
25 }
26 
27 void ToyFactory::createElectronicToy(const std::string Toyname_,  bool hasBattery) {
28     addToy(new ElectronicToy(Toyname_,  hasBattery));
29     std::cout << "创建电子玩具: " << Toyname_ << std::endl;
30 }
31 
32 void ToyFactory::createSportToy(const std::string Toyname_, const std::string Sportmode_) {
33     addToy(new SportToy(Toyname_, Sportmode_));
34     std::cout << "创建运动玩具: " << Toyname_ << std::endl;
35 }
36 
37 void ToyFactory::displayAllToys() const {
38     std::cout << name << " 所有玩具信息 " << std::endl;
39 
40     if (toys.empty()) {
41         std::cout << "工厂里还没有玩具!" << std::endl;
42         return;
43     }
44 
45     std::cout << "玩具总数: " << toys.size() << "" << std::endl;
46 
47     for (size_t i = 0; i < toys.size(); ++i) {
48         std::cout << "玩具" << i + 1 << ":" << std::endl;
49         toys[i]->display();
50         toys[i]->ShowSpecialFeature();
51         std::cout << std::endl;
52     }
53 }

demo4.cpp

#include "ToyFactory.hpp"
#include <iostream>

int main() {
    ToyFactory factory("xx玩具工厂");
    std::cout << std::endl;
    std::cout << "正在创建玩具..." << std::endl;
    factory.createCuddlyToy("小熊玩偶");
    factory.createElectronicToy("遥控汽车", true);
    factory.createElectronicToy("电子狗",  false);
    factory.createSportToy("篮球" ,"用手拍");
    factory.createSportToy("足球",  "用脚踢");
    std::cout << std::endl;
    factory.displayAllToys();
    return 0;
}

4.运行结果截图

image

 

posted @ 2025-12-01 18:37  陈志立  阅读(5)  评论(0)    收藏  举报