【C++ Primer Plus习题】13.4

devtools/2024/12/22 9:01:06/

大家好,这里是国中之林!
❥前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。有兴趣的可以点点进去看看←

问题:

这里是引用
在这里插入图片描述

解答:
main.cpp

#include <iostream>#include "port.h"int main() {Port p1;Port p2("Abc", "Bcc", 30);std::cout << p1 << std::endl<<endl;std::cout << p2 << std::endl << endl;Port p3 = p2;p3.Show();p3 += 3;p3.Show();Port p4 = p2;p3 -= 2;p3.Show();cout << endl;VintagePort vp1("Vabc", 50, "hn", 1983);vp1.Show();cout << endl;VintagePort vp2;vp2.Show();cout << endl;vp1 -= 3;vp2 = vp1;std::cout << vp2 << std::endl;return 0;
}

port.h

#pragma once
#include <iostream>
using namespace std;class Port
{
private:char* brand;char style[20];int bottles;
public:Port(const char* br = "none", const char* st = "none", int b = 0);Port(const Port& p);virtual ~Port() { delete[] brand; }Port& operator=(const Port& p);Port& operator+=(int b);Port& operator-=(int b);int BottleCount()const { return bottles; }virtual void Show()const;friend ostream& operator<<(ostream& os, const Port& p);
};class VintagePort :public Port
{
private:char* nickname;int year;
public:VintagePort();VintagePort(const char*br,int b,const char*nn,int y);VintagePort(const VintagePort&vp);~VintagePort() { delete[] nickname; }VintagePort& operator=(const VintagePort&vp);void Show()const override;friend ostream& operator<<(ostream& os, const VintagePort& vp);
};

port.cpp

#include "port.h"Port::Port(const char* br, const char* st, int b)
{brand = new char[strlen(br) + 1];strcpy_s(brand, strlen(br) + 1, br);strcpy_s(style, strlen(br) + 1, st);bottles = b;
}
Port::Port(const Port& p)
{brand = new char[strlen(p.brand) + 1];strcpy_s(brand, strlen(p.brand) + 1, p.brand);strcpy_s(style, strlen(p.style) + 1, p.style);bottles = p.bottles;
}
Port& Port::operator=(const Port& p)
{if (this == &p)return *this;if (brand)delete[] brand;brand = new char[strlen(p.brand) + 1];strcpy_s(brand, strlen(p.brand) + 1, p.brand);strcpy_s(style, strlen(p.style) + 1, p.style);bottles = p.bottles;return *this;
}
Port& Port::operator+=(int b)
{this->bottles += b;return *this;
}
Port& Port::operator-=(int b)
{this->bottles -= b;return *this;
}
void Port::Show()const
{cout << "Brand:" << this->brand << endl;cout << "Kind:" << this->style << endl;cout << "Bottles:" << this->bottles << endl;
}
ostream& operator<<(ostream& os, const Port& p)
{os << p.brand << "," << p.style << "," << p.bottles;return os;
}VintagePort::VintagePort():Port()
{nickname = new char[1];nickname[0] = '\0';year = 0;
}
VintagePort::VintagePort(const char* br, int b, const char* nn, int y):Port(br,"none",b)
{nickname = new char[strlen(nn) + 1];strcpy_s(nickname, strlen(nn) + 1, nn);year = y;
}
VintagePort::VintagePort(const VintagePort& vp):Port(vp)
{nickname = new char[strlen(vp.nickname) + 1];strcpy_s(nickname, strlen(vp.nickname) + 1, vp.nickname);year = vp.year;
}
VintagePort& VintagePort::operator=(const VintagePort& vp)
{if (this == &vp)return *this;if (nickname)delete[] nickname;Port::operator=(vp);nickname = new char[strlen(vp.nickname) + 1];strcpy_s(nickname, strlen(vp.nickname) + 1, vp.nickname);year = vp.year;return *this;
}
void VintagePort::Show()const
{Port::Show();cout << "nickname:" << nickname << endl;cout << "year:" << year << endl;
}
ostream& operator<<(ostream& os, const VintagePort& vp)
{os << (const Port&)vp << "," << vp.nickname << "," << vp.year << endl;return os;
}

运行结果:
在这里插入图片描述

考查点:

  • 继承
  • 虚函数

2024年9月9日16:05:29


http://www.ppmy.cn/devtools/112070.html

相关文章

综合案例-数据可视化-折线图

一、json数据格式 1.1 json数据格式的定义与功能 json是一种轻量级的数据交互格式&#xff0c;可以按照json指定的格式去组织和封装数据&#xff0c;json数据格式本质上是一个带有特定格式的字符串。 功能&#xff1a;json就是一种在各个编程语言中流通的数据格式&#xff0…

828华为云征文 | Flexus X 实例服务器网络性能深度评测

引言 随着互联网应用的快速发展&#xff0c;网络带宽和性能对云服务器的表现至关重要。在不同的云服务平台上&#xff0c;即便配置相同的带宽&#xff0c;实际的网络表现也可能有所差异。因此&#xff0c;了解并测试服务器的网络性能变得尤为重要。本文将以华为云X实例服务器为…

yolov8 rect batch_shapes 672 图像大小变化

遇到这样一种情况&#xff1a;img_sz640,但在val时&#xff0c;输入网络的张量h和w是672 为什么输入图像会从640变大到672&#xff1f; 这是因为一种rectangle增强方法&#xff0c;“同个batch里做rectangle宽高等比变换&#xff0c; 加快训练 &#xff0c;对于多余的黑边做到…

Redis 入门 - 五大基础类型及其指令学习

经过前面Redis入门系列三篇文章学习&#xff0c;相信大家已经准备好学习新知识了&#xff0c;到这里也算是真正开始学习Redis了。学习了软件安装&#xff0c;客户端选择&#xff0c;那么接下来也应该来了解Redis有什么&#xff0c;能干什么。 我们在第一章中就说过&#xff0c…

[M滑动窗口] lc 2555. 两个线段获得的最多奖品(滑动窗口+同向双指针+代码技巧)

文章目录 1. 题目来源2. 题目解析 1. 题目来源 链接&#xff1a;2555. 两个线段获得的最多奖品 2. 题目解析 挺有意思的一道题目&#xff0c;同向双指针简单dp 的思想。 思路&#xff1a; 题目要求枚举两个线段&#xff0c;其实可以想到经典题目「两数之和」。我们可以枚举…

基于图像的端到端方案实现小车在模拟城市场景中的自主导航

基于图像的端到端方案实现小车在模拟城市场景中的自主导航 FSD&#xff08;Full Self-Driving&#xff09;是特斯拉公司推出的一种自动驾驶技术&#xff0c;旨在实现完全自主的驾驶体验。FSD系统依靠大量的数据和高级的机器学习算法&#xff0c;结合车载传感器&#xff08;如摄…

基于SpringBoot+Vue的瑜伽体验课预约管理系统

作者&#xff1a;计算机学姐 开发技术&#xff1a;SpringBoot、SSM、Vue、MySQL、JSP、ElementUI、Python、小程序等&#xff0c;“文末源码”。 专栏推荐&#xff1a;前后端分离项目源码、SpringBoot项目源码、SSM项目源码 系统展示 【2025最新】基于JavaSpringBootVueMySQL的…

UNI-APP 富文本编辑器,可以对图片、文字格式进行编辑和混排。

✍找了几篇文章对比了一下&#xff0c;大体都差不多各有各的说辞和见解,但是没有提供/style/editor-icon.css文件&#xff0c;找起来虽然说不算太麻烦&#xff0c;但是不够直接&#xff0c;又要花费时间去弄&#xff0c;虽然用的不是很多但是&#xff0c;我还是决定自己写一篇&…