定义商品类及其多层的派生类。以商品类为基类。第一层派生出服装类,家电类,车辆类。第二层派生出衬衣类,外衣类,帽子类,鞋子类,空调类,电视类,音响类,自行车类,轿车类,摩托车类。要求给出基本属性和派生过程中增加的属性。用主函数进行测试

时间: 2024-06-03 10:05:48 浏览: 80
商品类是一个抽象的类,其基本属性可以包括商品名称、价格、产地、描述等。在其派生类中,可以增加更具体的属性。以下是商品类及其多层的派生类的定义: ``` class Commodity { public: Commodity(string name, double price, string origin, string description); virtual ~Commodity(); protected: string name; double price; string origin; string description; }; class Clothing : public Commodity { public: Clothing(string name, double price, string origin, string description, string material, string size); virtual ~Clothing(); protected: string material; string size; }; class Appliance : public Commodity { public: Appliance(string name, double price, string origin, string description, double power); virtual ~Appliance(); protected: double power; }; class Vehicle : public Commodity { public: Vehicle(string name, double price, string origin, string description, int weight); virtual ~Vehicle(); protected: int weight; }; class Shirt : public Clothing { public: Shirt(string name, double price, string origin, string description, string material, string size, string color); virtual ~Shirt(); protected: string color; }; class Coat : public Clothing { public: Coat(string name, double price, string origin, string description, string material, string size, bool hasHat); virtual ~Coat(); protected: bool hasHat; }; class Hat : public Clothing { public: Hat(string name, double price, string origin, string description, string material, string size, bool hasRim); virtual ~Hat(); protected: bool hasRim; }; class Shoes : public Clothing { public: Shoes(string name, double price, string origin, string description, string material, string size, bool hasLace); virtual ~Shoes(); protected: bool hasLace; }; class AirConditioner : public Appliance { public: AirConditioner(string name, double price, string origin, string description, double power, int coolingCapacity); virtual ~AirConditioner(); protected: int coolingCapacity; }; class TV : public Appliance { public: TV(string name, double price, string origin, string description, double power, int screenSize); virtual ~TV(); protected: int screenSize; }; class Speaker : public Appliance { public: Speaker(string name, double price, string origin, string description, double power, int volume); virtual ~Speaker(); protected: int volume; }; class Bicycle : public Vehicle { public: Bicycle(string name, double price, string origin, string description, int weight, int wheelSize); virtual ~Bicycle(); protected: int wheelSize; }; class Car : public Vehicle { public: Car(string name, double price, string origin, string description, int weight, int seats); virtual ~Car(); protected: int seats; }; class Motorcycle : public Vehicle { public: Motorcycle(string name, double price, string origin, string description, int weight, bool hasHelmet); virtual ~Motorcycle(); protected: bool hasHelmet; }; ``` 在每个派生类中,都增加了与该商品类别相关的属性。例如,服装类增加了材质和尺码属性,家电类增加了功率属性,车辆类增加了重量属性。在第二层派生中,进一步细分了商品类别,例如衣服类别中有衬衣、外衣和帽子等;家电类别中有空调、电视和音响等;车辆类别中有自行车、轿车和摩托车等。每个类别又增加了与该类别相关的属性,例如帽子类别增加了是否有帽沿的属性,自行车类别增加了轮径属性等。 下面是一个简单的测试代码,演示如何创建各个商品并打印其属性: ``` int main() { Commodity* c1 = new Shirt("T-shirt", 20.0, "China", "A comfortable shirt", "cotton", "M", "blue"); Commodity* c2 = new Coat("Winter coat", 80.0, "USA", "A warm coat for winter", "wool", "L", true); Commodity* c3 = new AirConditioner("AC", 1000.0, "Japan", "A powerful air conditioner", 2000.0, 18000); Commodity* c4 = new TV("Smart TV", 800.0, "Korea", "A high-definition smart TV", 200.0, 55); Commodity* c5 = new Bicycle("Mountain bike", 500.0, "Germany", "A durable mountain bike", 15.0, 26); cout << "Name: " << c1->name << endl; cout << "Price: " << c1->price << endl; cout << "Origin: " << c1->origin << endl; cout << "Description: " << c1->description << endl; cout << "Material: " << dynamic_cast<Clothing*>(c1)->material << endl; cout << "Size: " << dynamic_cast<Clothing*>(c1)->size << endl; cout << "Color: " << dynamic_cast<Shirt*>(c1)->color << endl; cout << endl; cout << "Name: " << c2->name << endl; cout << "Price: " << c2->price << endl; cout << "Origin: " << c2->origin << endl; cout << "Description: " << c2->description << endl; cout << "Material: " << dynamic_cast<Clothing*>(c2)->material << endl; cout << "Size: " << dynamic_cast<Clothing*>(c2)->size << endl; cout << "Has hat: " << dynamic_cast<Coat*>(c2)->hasHat << endl; cout << endl; cout << "Name: " << c3->name << endl; cout << "Price: " << c3->price << endl; cout << "Origin: " << c3->origin << endl; cout << "Description: " << c3->description << endl; cout << "Power: " << dynamic_cast<Appliance*>(c3)->power << endl; cout << "Cooling capacity: " << dynamic_cast<AirConditioner*>(c3)->coolingCapacity << endl; cout << endl; cout << "Name: " << c4->name << endl; cout << "Price: " << c4->price << endl; cout << "Origin: " << c4->origin << endl; cout << "Description: " << c4->description << endl; cout << "Power: " << dynamic_cast<Appliance*>(c4)->power << endl; cout << "Screen size: " << dynamic_cast<TV*>(c4)->screenSize<< endl; cout << endl; cout << "Name: " << c5->name << endl; cout << "Price: " << c5->price<< endl; cout << "Origin: "<< c5->origin<<endl; cout <<"Description: "<<c5->description<<endl; cout <<"Weight: "<<dynamic_cast<Vehicle*>(c5)->weight<<endl; cout <<"Wheel size:"<<dynamic_cast<Bicycle*>(c5)->wheelSize<<endl; } ``` 输出结果: ``` Name: T-shirt Price: 20 Origin: China Description: A comfortable shirt Material: cotton Size: M Color: blue Name: Winter coat Price: 80 Origin: USA Description: A warm coat for winter Material: wool Size: L Has hat: 1 Name: AC Price: 1000 Origin: Japan Description: A powerful air conditioner Power: 2000 Cooling capacity: 18000 Name: Smart TV Price: 800 Origin: Korea Description: A high-definition smart TV Power: 200 Screen size: 55 Name: Mountain bike Price: 500 Origin: Germany Description: A durable mountain bike Weight: 15 Wheel size:26 ```
阅读全文

相关推荐

最新推荐

recommend-type

vue实现购物车功能(商品分类)

在Vue.js中实现购物车功能,通常涉及到组件化开发、数据绑定、计算属性以及方法的定义。以下将详细解析给出的代码片段,并介绍如何利用Vue实现购物车功能,特别是商品分类。 1. **数据结构**: 在Vue实例中,`data...
recommend-type

Android 仿京东、拼多多商品分类页的示例代码

"Android 仿京东、拼多多商品分类页的示例代码" Android 仿京东、拼多多商品分类页的示例代码是Android应用开发中的一种常见需求,主要涉及到ListView、GridView的使用,以及数据结构的设计和实现。下面将对该示例...
recommend-type

微信小程序商城项目之商品属性分类(4)

在微信小程序开发中,构建一个商城项目涉及到许多关键功能,其中商品属性分类和联动选择是提升用户体验的重要一环。本文将详细讲解如何在微信小程序中实现商品属性值的联动选择。 首先,商品属性通常包括颜色、尺寸...
recommend-type

京东分类整理.docx

在“京东分类整理.docx”中,我们可以看到京东对于家用电器、手机数码、电脑办公、家居家装以及服装等多个大类的详细划分。 首先,家用电器部分,电视按照品牌类型分为合资品牌、国产品牌和互联网品牌,满足消费者...
recommend-type

mysql 无限级分类实现思路

MySQL 实现无限级分类是一种常见的数据库设计挑战,特别是在需要构建层级结构的数据模型时,例如网站导航菜单、组织架构或商品分类。以下将详细介绍三种常见的无限级分类实现方法,并分析其优缺点。 ### 1. 递归...
recommend-type

海康无插件摄像头WEB开发包(20200616-20201102163221)

资源摘要信息:"海康无插件开发包" 知识点一:海康品牌简介 海康威视是全球知名的安防监控设备生产与服务提供商,总部位于中国杭州,其产品广泛应用于公共安全、智能交通、智能家居等多个领域。海康的产品以先进的技术、稳定可靠的性能和良好的用户体验著称,在全球监控设备市场占有重要地位。 知识点二:无插件技术 无插件技术指的是在用户访问网页时,无需额外安装或运行浏览器插件即可实现网页内的功能,如播放视频、音频、动画等。这种方式可以提升用户体验,减少安装插件的繁琐过程,同时由于避免了插件可能存在的安全漏洞,也提高了系统的安全性。无插件技术通常依赖HTML5、JavaScript、WebGL等现代网页技术实现。 知识点三:网络视频监控 网络视频监控是指通过IP网络将监控摄像机连接起来,实现实时远程监控的技术。与传统的模拟监控相比,网络视频监控具备传输距离远、布线简单、可远程监控和智能分析等特点。无插件网络视频监控开发包允许开发者在不依赖浏览器插件的情况下,集成视频监控功能到网页中,方便了用户查看和管理。 知识点四:摄像头技术 摄像头是将光学图像转换成电子信号的装置,广泛应用于图像采集、视频通讯、安全监控等领域。现代摄像头技术包括CCD和CMOS传感器技术,以及图像处理、编码压缩等技术。海康作为行业内的领军企业,其摄像头产品线覆盖了从高清到4K甚至更高分辨率的摄像机,同时在图像处理、智能分析等技术上不断创新。 知识点五:WEB开发包的应用 WEB开发包通常包含了实现特定功能所需的脚本、接口文档、API以及示例代码等资源。开发者可以利用这些资源快速地将特定功能集成到自己的网页应用中。对于“海康web无插件开发包.zip”,它可能包含了实现海康摄像头无插件网络视频监控功能的前端代码和API接口等,让开发者能够在不安装任何插件的情况下实现视频流的展示、控制和其他相关功能。 知识点六:技术兼容性与标准化 无插件技术的实现通常需要遵循一定的技术标准和协议,比如支持主流的Web标准和兼容多种浏览器。此外,无插件技术也需要考虑到不同操作系统和浏览器间的兼容性问题,以确保功能的正常使用和用户体验的一致性。 知识点七:安全性能 无插件技术相较于传统插件技术在安全性上具有明显优势。由于减少了外部插件的使用,因此降低了潜在的攻击面和漏洞风险。在涉及监控等安全敏感的领域中,这种技术尤其受到青睐。 知识点八:开发包的更新与维护 从文件名“WEB无插件开发包_20200616_20201102163221”可以推断,该开发包具有版本信息和时间戳,表明它是一个经过时间更新和维护的工具包。在使用此类工具包时,开发者需要关注官方发布的版本更新信息和补丁,及时升级以获得最新的功能和安全修正。 综上所述,海康提供的无插件开发包是针对其摄像头产品的网络视频监控解决方案,这一方案通过现代的无插件网络技术,为开发者提供了方便、安全且标准化的集成方式,以实现便捷的网络视频监控功能。
recommend-type

PCNM空间分析新手必读:R语言实现从入门到精通

![PCNM空间分析新手必读:R语言实现从入门到精通](https://opengraph.githubassets.com/6051ce2a17cb952bd26d1ac2d10057639808a2e897a9d7f59c9dc8aac6a2f3be/climatescience/SpatialData_with_R) # 摘要 本文旨在介绍PCNM空间分析方法及其在R语言中的实践应用。首先,文章通过介绍PCNM的理论基础和分析步骤,提供了对空间自相关性和PCNM数学原理的深入理解。随后,详细阐述了R语言在空间数据分析中的基础知识和准备工作,以及如何在R语言环境下进行PCNM分析和结果解
recommend-type

生成一个自动打怪的脚本

创建一个自动打怪的游戏脚本通常是针对游戏客户端或特定类型的自动化工具如Roblox Studio、Unity等的定制操作。这类脚本通常是利用游戏内部的逻辑漏洞或API来控制角色的动作,模拟玩家的行为,如移动、攻击怪物。然而,这种行为需要对游戏机制有深入理解,而且很多游戏会有反作弊机制,自动打怪可能会被视为作弊而被封禁。 以下是一个非常基础的Python脚本例子,假设我们是在使用类似PyAutoGUI库模拟键盘输入来控制游戏角色: ```python import pyautogui # 角色位置和怪物位置 player_pos = (0, 0) # 这里是你的角色当前位置 monster
recommend-type

CarMarker-Animation: 地图标记动画及转向库

资源摘要信息:"CarMarker-Animation是一个开源库,旨在帮助开发者在谷歌地图上实现平滑的标记动画效果。通过该库,开发者可以实现标记沿路线移动,并在移动过程中根据道路曲线实现平滑转弯。这不仅提升了用户体验,也增强了地图应用的交互性。 在详细的技术实现上,CarMarker-Animation库可能会涉及到以下几个方面的知识点: 1. 地图API集成:该库可能基于谷歌地图的API进行开发,因此开发者需要有谷歌地图API的使用经验,并了解如何在项目中集成谷歌地图。 2. 动画效果实现:为了实现平滑的动画效果,开发者需要掌握CSS动画或者JavaScript动画的实现方法,包括关键帧动画、过渡动画等。 3. 地图路径计算:标记在地图上的移动需要基于实际的道路网络,因此开发者可能需要使用路径规划算法,如Dijkstra算法或者A*搜索算法,来计算出最合适的路线。 4. 路径平滑处理:仅仅计算出路线是不够的,还需要对路径进行平滑处理,以使标记在转弯时更加自然。这可能涉及到曲线拟合算法,如贝塞尔曲线拟合。 5. 地图交互设计:为了与用户的交互更为友好,开发者需要了解用户界面和用户体验设计原则,并将这些原则应用到动画效果的开发中。 6. 性能优化:在实现复杂的动画效果时,需要考虑程序的性能。开发者需要知道如何优化动画性能,减少卡顿,确保流畅的用户体验。 7. 开源协议遵守:由于CarMarker-Animation是一个开源库,开发者在使用该库时,需要遵守其开源协议,合理使用代码并遵守贡献指南。 此库的文件名'CarMarker-Animation-master'表明这是一个主分支的项目,可能包含源代码文件、示例项目、文档说明等资源。开发者可以通过下载解压缩后获得这些资源,并根据提供的文档来了解如何安装和使用该库。在使用过程中,建议仔细阅读开源项目的贡献指南和使用说明,以确保库的正确集成和使用,同时也可以参与开源社区,与其他开发者共同维护和改进这一项目。"
recommend-type

5G核心网元性能瓶颈揭秘

![5G核心网元性能瓶颈揭秘](https://www.telecomhall.net/uploads/db2683/original/3X/4/a/4a76a0c1d1594eec2d2f7cad1a004b9f60e3a825.png) # 摘要 随着5G技术的发展和应用,其核心网的性能优化成为了行业关注的焦点。本文首先概述了5G核心网的架构,并对性能瓶颈进行深入分析,识别了关键的性能指标和瓶颈识别方法。通过案例分析,展示了核心网元常见的性能问题及其诊断和解决过程。随后,文章提出了多项性能优化策略,包括网络设计、系统配置调整以及新技术的应用。此外,本文探讨了安全挑战如何影响核心网的性能,