C++PrimerPlus学习——第十三章编程练习

13-1
注意char*前面加const,不然就会报错
Classis.h

#ifndef CLASSIC_H_
#define CLASS_H_
#include <string>
class Cd {
private:char performers[50];char label[20];int selections;double playtime;
public:Cd(const char* s1, const char* s2, int n, double x);Cd(const Cd&);Cd();virtual ~Cd();virtual void Report() const;virtual Cd& operator=(const Cd& d);
};
class Classic:public Cd
{
private:char major[50];
public:Classic(const char* s1, const char* s2, const char* s3, int n, double x);Classic();~Classic();void Report();Classic& operator=(const Classic& d);
};
#endif // !CLASSIC_H_

Classic.cpp

#include <iostream>
#include "Classic.h"Cd::Cd(const char* s1, const char* s2, int n, double x)
{strcpy_s(performers, strlen(s1) + 1, s1);strcpy_s(label, strlen(s2) + 1, s2);selections = n;playtime = x;
}
Cd::Cd(const Cd& d)
{strcpy_s(performers, strlen(d.performers) + 1, d.performers);strcpy_s(label, strlen(d.label) + 1, d.label);selections = d.selections;playtime = d.playtime;
}
Cd::Cd()
{performers[0] = '\0';label[0] = '\0';selections = 0;playtime = 0.0;
}
Cd::~Cd()
{}
void Cd::Report() const
{std::cout << "Preformers: " << performers << '\n';std::cout << "Label: " << label << '\n';std::cout << "selectiongs: " << selections << '\n';std::cout << "playtime: " << playtime << '\n';
}
Cd& Cd::operator=(const Cd& d)
{if (this == &d)return *this;strcpy_s(performers, strlen(d.performers) + 1, d.performers);strcpy_s(label, strlen(d.label) + 1, d.label);selections = d.selections;playtime = d.playtime;return *this;
}
Classic::Classic(const char* s1, const char* s2, const char* s3, int n, double x):Cd(s2, s3, x, n)
{strcpy_s(major, strlen(s1)+1, s1);
}
Classic::Classic():Cd()
{major[0] = '\0';
}
Classic::~Classic()
{}
void Classic::Report()
{Cd::Report();std::cout << "Major: " << major << '\n';
}
Classic& Classic::operator=(const Classic& d)
{if (this == &d)return *this;Cd::operator=(d);strcpy_s(major, strlen(d.major) + 1, d.major);return *this;
}

main.cpp

#include <iostream>
#include "Classic.h"
using std::cout;
void Bravo(const Cd& disk);int main()
{Cd c1("Beatles", "Capitol", 14, 35.5);Classic c2 = Classic("Piano Sonata in B flat, Fantasia in C", "Alfred Brendel", "Philips", 2, 57.17);Cd* pcd = &c1;cout<<"Using object directly:\n";c1.Report();c2.Report();cout << "Calling a function with a Cd reference argument:\n";Bravo(c1);Bravo(c2);cout << "Testing assignment: ";Classic copy;copy = c2;copy.Report();return 0;
}void Bravo(const Cd& disk)
{disk.Report();
}

13-2
主函数仍然不变
Classic.h

#ifndef CLASSIC_H_
#define CLASSIC_H_
#include <string>
class Cd {
private:char* performers;char* label;int selections;double playtime;
public:Cd(const char* s1, const char* s2, int n, double x);Cd(const Cd&);Cd();virtual ~Cd();virtual void Report() const;virtual Cd& operator=(const Cd& d);
};
class Classic:public Cd
{
private:char* major;
public:Classic(const char* s1, const char* s2, const char* s3, int n, double x);Classic();~Classic();void Report();Classic& operator=(const Classic& d);
};
#endif // !CLASSIC_H_

Classic.cpp

#include <iostream>
#include "Classic.h"Cd::Cd(const char* s1, const char* s2, int n, double x)
{performers = new char[strlen(s1) + 1];strcpy_s(performers, strlen(s1) + 1, s1);label = new char[strlen(s2) + 1];strcpy_s(label, strlen(s2) + 1, s2);selections = n;playtime = x;
}
Cd::Cd(const Cd& d)
{performers = new char[strlen(d.performers) + 1];strcpy_s(performers, strlen(d.performers) + 1, d.performers);label = new char[strlen(d.label) + 1];strcpy_s(label, strlen(d.label) + 1, d.label);selections = d.selections;playtime = d.playtime;
}
Cd::Cd()
{performers = new char[1];performers[0] = '\0';label = new char[1];label[0] = '\0';selections = 0;playtime = 0.0;
}
Cd::~Cd()
{delete[] performers;delete[] label;
}
void Cd::Report() const
{std::cout << "Preformers: " << performers << '\n';std::cout << "Label: " << label << '\n';std::cout << "selectiongs: " << selections << '\n';std::cout << "playtime: " << playtime << '\n';
}
Cd& Cd::operator=(const Cd& d)
{if (this == &d)return *this;delete[] performers;delete[] label;performers = new char[strlen(d.performers) + 1];strcpy_s(performers, strlen(d.performers) + 1, d.performers);label = new char[strlen(d.label) + 1];strcpy_s(label, strlen(d.label) + 1, d.label);selections = d.selections;playtime = d.playtime;return *this;
}
Classic::Classic(const char* s1, const char* s2, const char* s3, int n, double x):Cd(s2, s3, x, n)
{major = new char[strlen(s1) + 1];strcpy_s(major, strlen(s1)+1, s1);
}
Classic::Classic():Cd()
{major = new char[1];major[0] = '\0';
}
Classic::~Classic()
{delete[] major;
}
void Classic::Report()
{Cd::Report();std::cout << "Major: " << major << '\n';
}
Classic& Classic::operator=(const Classic& d)
{if (this == &d)return *this;Cd::operator=(d);delete[] major;major = new char[strlen(d.major) + 1];strcpy_s(major, strlen(d.major) + 1, d.major);return *this;
}

13-3
虽然不是很理解,但是这个套路是明白了
dma.h

#ifndef DMA_H_
#define DMA_H_
#include <iostream>class ABC
{char* fullname;int level;
public:ABC(const char* f = "null", int I = 0);ABC(const ABC& ab);virtual ~ABC();ABC& operator=(const ABC& ab);virtual void show();
};class baseDMA: public ABC
{
private:char* label;int rating;
public:baseDMA(const char* l = "null", int r = 0, const char* f = "null", int lv = 0);baseDMA(const baseDMA& rs);~baseDMA();baseDMA& operator=(const baseDMA& rs);virtual void show();
};class lacksDMA: public ABC
{
private:enum{ COL_LEN = 40 };char color[COL_LEN];
public:lacksDMA(const char* c = "blank", const char* l = "null", int r = 0);lacksDMA(const char* c, const baseDMA& rs);virtual void show();
};class hasDMA: public ABC
{
private:char* style;
public:hasDMA(const char* s = "none", const char* l = "null", int r = 0);hasDMA(const char* s, const baseDMA& hs);hasDMA(const hasDMA& hs);~hasDMA();hasDMA& operator=(const hasDMA& rs);virtual void show();
};
#endif // !DMA_H_

dma.cpp

#include<cstring>
#include<string>
#include "dma.h"ABC::ABC(const char* a, int b)
{fullname = new char[strlen(a) + 1];strcpy_s(fullname, strlen(a) + 1, a);level = b;
}
ABC::ABC(const ABC& ab)
{fullname = new char[strlen(ab.fullname) + 1];strcpy_s(fullname, strlen(ab.fullname) + 1, ab.fullname);level = ab.level;
}
ABC::~ABC()
{delete[] fullname;
}
ABC& ABC::operator=(const ABC& ab)
{if (this == &ab)return *this;delete[] fullname;fullname = new char[strlen(ab.fullname) + 1];strcpy_s(fullname, strlen(ab.fullname) + 1, ab.fullname);level = ab.level;return *this;
}
void ABC::show()
{std::cout << "fullname: " << fullname << std::endl;std::cout << "level: " << level << std::endl;
}baseDMA::baseDMA(const char* l, int r, const char* f, int lv):ABC(f, lv)
{label = new char[strlen(l) + 1];strcpy_s(label, strlen(l) + 1, l);rating = r;
}
baseDMA::baseDMA(const baseDMA& rs):ABC(rs)
{label = new char[strlen(rs.label) + 1];strcpy_s(label, strlen(rs.label) + 1, rs.label);rating = rs.rating;
}
baseDMA::~baseDMA()
{delete[] label;
}
baseDMA& baseDMA::operator=(const baseDMA& rs)
{if (this == &rs)return *this;ABC::operator=(rs);delete[] label;label = new char[strlen(rs.label) + 1];strcpy_s(label, strlen(rs.label) + 1, rs.label);rating = rs.rating;return *this;
}
void baseDMA::show()
{ABC::show();std::cout << "label: " << label << std::endl;std::cout << "rating: " << rating << std::endl;
}
lacksDMA::lacksDMA(const char* c, const char* l, int r):ABC(l, r)
{strcpy_s(color, strlen(c) + 1, c);
}
lacksDMA::lacksDMA(const char* c, const baseDMA& rs):ABC(rs)
{strcpy_s(color, strlen(c) + 1, c);
}
void lacksDMA::show()
{ABC::show();std::cout << "color: " << color << std::endl;
}
hasDMA::hasDMA(const char* s, const char* l, int r):ABC(l, r)
{style = new char[strlen(s) + 1];strcpy_s(style, strlen(s) + 1, s);
}
hasDMA::hasDMA(const char* s, const baseDMA& hs):ABC(hs)
{style = new char[strlen(s) + 1];strcpy_s(style, strlen(s) + 1, s);
}
hasDMA::hasDMA(const hasDMA& hs):ABC(hs)
{style = new char[strlen(hs.style) + 1];strcpy_s(style, strlen(hs.style) + 1, hs.style);
}
hasDMA::~hasDMA()
{delete[] style;
}
hasDMA& hasDMA::operator=(const hasDMA& hs)
{if (this == &hs)return *this;ABC::operator=(hs);delete[] style;style = new char[strlen(hs.style) + 1];strcpy_s(style, strlen(hs.style) + 1, hs.style);return *this;
}
void hasDMA::show()
{ABC::show();std::cout << "style: " << style << std::endl;
}

main.cpp

#include <iostream>
#include "dma.h"
using std::cout;int main()
{baseDMA a1("asdfadsf", 9, "dsfadfa", 1);lacksDMA a2("dfafda", "daf d", 2);hasDMA a3("sdfadfas", "dfqwedsa", 3);cout << "baseDMA:\n";a1.show();cout << "lacksDMA:\n";a2.show();cout << "hasDMA:\n";a3.show();baseDMA a4 = a1;lacksDMA a5 = a2;hasDMA a6 = a3;return 0;
}

13-4
Port.h

#ifndef PORT_H_
#define PORT_H_
#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, const char* st, int b, const char* nn, int y);VintagePort(const VintagePort& vp);~VintagePort() { delete[] nickname; }void Show() const;friend ostream& operator<<(ostream& os, const VintagePort& vp);
};
#endif // !PORT_H_

Port.cpp

#include "Port.h"
#include <cstring>
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, 20, 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, 20, p.style);bottles = p.bottles;
}Port& Port::operator=(const Port& p)
{if (this == &p)return *this;delete[] brand;brand = new char[strlen(p.brand) + 1];strcpy_s(brand, strlen(p.brand) + 1, p.brand);strcpy_s(style, p.style);bottles = p.bottles;return *this;return *this;// TODO: 在此处插入 return 语句
}Port& Port::operator+=(int b)
{bottles += b;return *this;// TODO: 在此处插入 return 语句
}Port& Port::operator-=(int b)
{bottles -= b;return *this;	// TODO: 在此处插入 return 语句
}void Port::Show() const
{std::cout << "Brand: " << brand << std::endl;std::cout << "King: " << style << std::endl;std::cout << "Bottles: " << bottles << std::endl;
}ostream& operator<<(ostream& os, const Port& p)
{std::cout << p.brand << ", " << p.style << ", " << p.bottles << std::endl;return os;// TODO: 在此处插入 return 语句
}ostream& operator<<(ostream& os, const VintagePort& vp)
{os << (const Port&)vp;std::cout << vp.nickname << ", " << vp.year << std::endl;return os;// TODO: 在此处插入 return 语句
}VintagePort::VintagePort()
{nickname = new char[1];nickname[0] = '\0';year = 0;
}VintagePort::VintagePort(const char* br, const char* st, int b, const char* nn, int y): Port(br, st, b)
{nickname = new char[strlen(nn) + 1];strcpy_s(nickname, strlen(nn) + 1, nn);year = y;
}VintagePort::VintagePort(const VintagePort& vp)
{nickname = new char[strlen(vp.nickname) + 1];strcpy_s(nickname, strlen(vp.nickname), vp.nickname);year = vp.year;
}void VintagePort::Show() const
{Port::Show();std::cout << "Nickname: " << nickname << std::endl;std::cout << "Year: " << year << std::endl;
}

main.cpp

#include <iostream>
#include "Port.h"
using std::cout;int main()
{Port wine1("Gallo", "tawny", 20);VintagePort wine2("Romance Conti", "vintage", 10, "The Noble", 1876);VintagePort wine3("Merlot", "ruby", 30, "Old Velvet", 1888);cout << "Show Port object:\n";wine1.Show();cout << wine1 << endl;cout << "Show VintagePort object:\n";wine2.Show();cout << wine2 << endl;cout << "Show VintagePort object:\n";wine3.Show();cout << wine3 << endl;Port(wine4) = wine1;cout << "Show VintagePort object:\n";wine4.Show();cout << wine4<< endl;return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/550510.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++PrimerPlus学习——第十四章编程练习

14-1 参考14.19 winec.h #ifndef WINEC_H_ #define WINEC_H_ #include <string> #include <valarray> using std::string;template<class T1, class T2> class Pair { private:T1 year;T2 bottles; public:Pair() {};Pair(const T1 y, const T2 b) :year(y)…

C++PrimerPlus学习——第十七章编程练习

17-1 不知道有没有理解错题意&#xff0c;参考list17.14 #include <iostream>int main() {using std::cout;using std::cin;using std::endl;char ch;int count 0;while (cin.peek() ! $){cin.get(ch);count;cout << ch;}cout << "\nThere are "…

数字图像处理基础与应用学习,第二章

计算灰度直方图和RGB三个通道的灰度直方图 Tips 1.计算灰度 cv2.calcHist(images, channels, mask, histSize, ranges[, hist[, accumulate ]]) imaes:输入的图像 channels:选择图像的通道 mask:掩膜&#xff0c;是一个大小和image一样的np数组&#xff0c;其中把需要处理的部分…

数字图像处理基础与应用 第四章

3-1 (1) 感觉就是图像模糊了&#xff0c;并没有去噪 from cv2 import cv2 import numpy as np import randomdef spNoise(img,prob):# 添加椒盐噪声,prob:噪声比例 output np.zeros(img.shape,np.uint8)thres 1 - prob for i in range(img.shape[0]):for j in range(img.sha…

数字图像处理基础与应用 第五章

5-1感觉这些方法主体都差不多&#xff0c;就是微分算子不同&#xff0c;懒得一个个写了 from cv2 import cv2 import numpy as np import randomdef singleDirectionsharpen(img, N3):p N // 2img_shape np.shape(img)out np.zeros(img_shape)for i in range(img_shape[0])…

新版scipy中的imread,imsave,imresize被弃用解决方法

阅读文献代码时发现新版scipy中的imread,imsave,imresize被弃用报错 搜索了一下发现可以用imageio中的imread和imsave代替原有的&#xff0c;用numpy的reshape来代替imresize 试了一下&#xff0c;不太行&#xff0c;文献中imread有mode‘L’&#xff0c;即读取灰度图&#xff…

anaconda中tensorflow-estimator版本应与tensorflow-gpu版本相同

把tensorflow升级到2.1.0版本是发现import tensorflow as tf出错 发现是anaconda安装的tensorflow-estimator版本是2.2.0&#xff0c;将版本回退到2.1.0后解决了问题

tf.contrib在tf2中无法使用

在尝试文献中代码时发现tf.comtrib无法使用 官方文档中说 It is still possible to run 1.X code, unmodified (except for contrib), in TensorFlow 2.0: import tensorflow.compat.v1 as tf tf.disable_v2_behavior()除了contrib应该都用能两行代码解决问题,contrib则用kera…

发现了imageio文档中有代替scipy.misc的说明

原文&#xff1a;https://imageio.readthedocs.io/en/latest/scipy.html?highlightimread imageio.imread可以代替scipy.misc.imread 用pilmode代替mode 用as_gray代替flatten pilmode类型&#xff1a; ‘L’ (8-bit pixels, grayscale) ‘P’ (8-bit pixels, mapped to an…

fastai学习笔记——安装

虽然说是推荐linux&#xff0c;windows可能有bug&#xff0c;但是我还是没办法只用linux win10anaconda python3.7 安装很简单 conda install -c fastchan fastai anaconda 好了也没发现有啥问题 测试torch是否可用 import torch cuda.test.is_available()True

fastai学习——第一个bug

跟着视频学习&#xff0c;在运行第一段测试代码的时候出现问题 from fastai.vision.all import * path untar_data(URLs.PETS)/imagesdef is_cat(x): return x[0].isupper() dls ImageDataLoaders.from_name_func(path, get_image_files(path), valid_pct0.2, seed42,label_…

fastai学习:01_intro Questionnaire

fastAI Questionnaire 感觉还挺多的&#xff0c;怪不得说每一课要额外8小时进行学习。 1.Do you need these for deep learning? Lots of math T / F Lots of data T / F Lots of expensive computers T / F A PhD T / F F F F F 2.Name five areas where deep learning is …

fastai学习——第二个问题

第二节课需要使用bing image search api获取bing图片搜索中的熊图片&#xff0c;此时发现获取api需要注册azure&#xff0c;卡在绑定卡上很久&#xff0c;想了想还要去弄一张带visa的卡&#xff0c;还是算了&#xff0c;就用猫狗大战数据集实验吧&#xff0c;按照与学习视频中类…

fastai学习:02_production Questionnaire

1.Where do text models currently have a major deficiency? Deep learning is currently not good at generating correct responses! We don’t currently have a reliable way to, for instance, combine a knowledge base of medical information with a deep learning m…

fastai学习:04_mnist_basics Questionnaire

1.How is a grayscale image represented on a computer? How about a color image? 灰度图&#xff1a;单通道&#xff0c;0-256 彩色图&#xff1a;三通道RGB或HSV&#xff0c;0-256 2.How are the files and folders in the MNIST_SAMPLE dataset structured? Why? 分为…

fastai学习:05_pet_breeds Questionnaire

1.Why do we first resize to a large size on the CPU, and then to a smaller size on the GPU? 首先&#xff0c;在训练模型时&#xff0c;我们希望能够将图片的尺寸统一&#xff0c;整理为张量&#xff0c;传入GPU&#xff0c;我们还希望最大限度地减少执行不同增强计算的…

fastai学习:06_multicat Questionnarie

1.How could multi-label classification improve the usability of the bear classifier? 可以对不存在的熊进行分类 2.How do we encode the dependent variable in a multi-label classification problem? One-hot encoding: Using a vector of zeros, with a one in each…

【论文阅读笔记】Detecting Camouflaged Object in Frequency Domain

1.论文介绍 Detecting Camouflaged Object in Frequency Domain 基于频域的视频目标检测 2022年发表于CVPR [Paper] [Code] 2.摘要 隐藏目标检测&#xff08;COD&#xff09;旨在识别完美嵌入其环境中的目标&#xff0c;在医学&#xff0c;艺术和农业等领域有各种下游应用。…

ubuntu中使用firefox浏览器播放bilibili的h5网页视频

安装好系统后&#xff0c;直接firefox打开bilibili显示没有flash插件 找了一圈没有发现自动播放h5的选项 搜索了一下发现可能是需要解码器 sudo apt-get install ubuntu-restricted-extras就能看了

ubuntu挂起唤醒后十几秒钟就自动熄屏一次

昨天晚上笔记本没关机&#xff0c;ubuntu挂起一晚上&#xff0c;今天早上打开电脑&#xff0c;发现每过十几秒钟就自动熄屏一次&#xff0c;重启之后好了&#xff0c;不知道什么原因 搜索了一下说可能是DPMS的问题&#xff0c;用xset -dpms可以关闭电源管理选项 但是本来的设置…