首页 > 其他分享 >实验5 继承和多态

实验5 继承和多态

时间:2023-12-03 17:22:23浏览次数:25  
标签:const string 继承 double void 多态 Date 实验 date

四、实验结论

实验任务3

pets.hpp

#pragma once

#include<iostream>
#include<string>
using namespace std;

class MachinePets {
public:
    MachinePets(const string &s = " ");
    string get_nickname() const;
public:
    virtual string talk() = 0;

protected:
    string nickname;
};

MachinePets::MachinePets(const string &s):nickname{s}{}
string MachinePets::get_nickname() const {
    return nickname;
}

class PetCats :public MachinePets {
public:
    PetCats(const string &s =" ");

public: 
    string talk() override;
};

PetCats::PetCats(const string& s):MachinePets{s}{}
string PetCats::talk() {
    string talk_cats = " miao wu~ ";
    return talk_cats;
}


class PetDogs :public MachinePets {
public:
    PetDogs(const string& s = " ");

public:
    string talk() override;
};

PetDogs::PetDogs(const string& s) :MachinePets{ s } {}
string PetDogs::talk() {
    string talk_dogs = " wang wang~";
    return talk_dogs;
};

 

task3.cpp

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

void play(MachinePets& obj) {
    std::cout << obj.get_nickname() << " says " << obj.talk() << std::endl;
}

void test() {
    PetCats cat("miku");
    PetDogs dog("da huang");

    play(cat);
    play(dog);
}

int main() {
    test();
}

 

运行测试截图:

 

 

实验任务4

Person.hpp

#pragma once
#include<limits>
#include<iostream>
#include<string>
using namespace std;

class Person {
public:
    Person(const string& s1 = " ", const string& s2 = " ", const string& s3 = " ");
    Person(const Person &p);
public:
    void update_telephone();
    void update_email();

    friend std::ostream& operator << (std::ostream& os, const Person& p);
    friend std::istream& operator >> (std::istream& is, Person& p);
    friend bool operator==(const Person& p1, const Person& p2);

private:
    string name, telephone, email;
};

Person::Person(const string& s1 , const string& s2 , const string& s3 ):name{s1},telephone{s2},email{s3}{}
Person::Person(const Person& p):name{p.name},telephone{p.telephone},email{p.email}{}

void Person::update_telephone() {
    cin.clear();
    cout << "输入电话号码:";
    string new_telephone;
    getline(cin,new_telephone);
    telephone = new_telephone;
    cout << "电话号码已更新..." << endl;
}

void Person::update_email() {
    cout << "输入email地址:";
    string new_email;
    getline(cin,new_email);
    email = new_email;
    cout << "email地址已更新..." << endl;
}

std::ostream& operator << (std::ostream& os, const Person& p) {
    os << p.name << endl << p.telephone << endl << p.email << endl;
    return os;
 }

std::istream& operator >> (std::istream& is, Person& p) {
    getline(is, p.name);
    getline(is, p.telephone);
    getline(is, p.email);
    cin.ignore(numeric_limits<streamsize>::max(), '\n');
    return is;
}

bool operator==(const Person& p1, const Person& p2) {
    return ((p1.name == p2.name) && (p1.telephone == p2.telephone));
}

 

task4.cpp

#include <iostream>
#include <vector>
#include "Person.hpp"

void test() {
    using namespace std;

    vector<Person> phone_book;
    Person p;

    cout << "输入一组联系人的联系方式,E直至按下Ctrl+Z终止\n";
    while (cin >> p) {
        phone_book.push_back(p);
    }

    cout << "\n更新phone_book中索引为0的联系人的手机号、邮箱:\n";
    phone_book.at(0).update_telephone();
    phone_book.at(0).update_email();

    cout << "\n测试两个联系人是否是同一个:\n";
    cout << boolalpha << (phone_book.at(0) == phone_book.at(1)) << endl;
}

int main() {
    test();
}

 

运行测试截图:

 

 

实验任务5

date.h

#pragma once

#include<iostream>

class Date {
private:
    int year;
    int month;
    int day;
    int totalDays;
public:
    Date(int year, int month, int day);
    int getYear() const { return year; }
    int getMonth() const { return month; }
    int getDay() const { return day; }
    int getMaxDay() const;
    bool isLeapYear() const {
        return year % 4 == 0 && year % 100 != 0 || year % 400 == 0;
    }
    void show() const;
    int operator-(const Date& date)const {
        return totalDays - date.totalDays;
    }
};

 

date.cpp

#include"date.h"
#include<iostream>
#include<cstdlib>
using namespace std;
namespace {
    const int DAYS_BEFORE_MONTH[] = { 0,31,59,90,120,151,181,212,243,273,304,334,365 };
}
Date::Date(int year, int month, int day) :year(year), month(month), day(day) {
    if (day <= 0 || day > getMaxDay()) {
        cout << "Invalid date: ";
        show();
        cout << endl;
        exit(1);
    }
    int years = year - 1;
    totalDays= years * 365 + years / 4 - years / 100 + years / 400 + DAYS_BEFORE_MONTH[month - 1] + day;
    if (isLeapYear() && month > 2)totalDays++;
}
int Date::getMaxDay() const {
    if (isLeapYear() && month == 2)
        return 29;
    else
        return DAYS_BEFORE_MONTH[month] - DAYS_BEFORE_MONTH[month - 1];
}
void Date::show()const {
    cout << getYear() << "-" << getMonth() << "-" << getDay();
}

 

accumulator.h

#pragma once

#include"date.h"
#include<iostream>

class Accumulator {
private:
    Date lastDate;
    double value;
    double sum;
public:
    Accumulator(const Date&date,double value):lastDate{date},value{value},sum{0}{}
    double getSum(const Date& date)const {
        return sum + value * (date - lastDate);
    }
    void change(const Date& date, double value) {
        sum = getSum(date);
        lastDate = date; this->value = value;
    }
    void reset(const Date& date, double value) {
        lastDate = date; this->value = value; sum = 0;
    }

};

 

account.h

#pragma once

#include"accumulator.h"
#include"date.h"
#include<iostream>
#include<string>

using namespace std;

class Account {
private:
    string id;
    double balance;
    static double total;
protected:
    Account(const Date& date, const string& id);
    void record(const Date& date, double amount, const string& desc);
    void error(const string& msg) const;
public:
    const string getId() const { return id; }
    double getBalance() const { return balance; }
    static double getTotal() { return total; }
    virtual void deposit(const Date& date, double amount, const string& desc) = 0;
    virtual void withdraw(const Date& date, double amount, const string& desc) = 0;
    virtual void settle(const Date& date) = 0;
    virtual void show() const;
};


class SavingsAccount :public Account {
private:
    Accumulator acc;
    double rate;
public:
    SavingsAccount(const Date& date, const string& id, double rate);
    double getRate()const { return rate; }
    void deposit(const Date& date, double amount, const string& desc);
    void withdraw(const Date& date, double amount, const string& desc);
    void settle(const Date& date);
};


class CreditAccount :public Account {
private:
    Accumulator acc;
    double credit;
    double rate;
    double fee;
    double getDebt()const {
        double balance = getBalance();
        return (balance < 0 ? balance : 0);
    }
public:
    CreditAccount(const Date& date, const string& id, double credit, double rate, double fee);
    double getCredit() const { return credit; }
    double getRate() const { return rate; }
    double getFee() const { return fee; }
    double getAvailableCredit() const {
        if (getBalance() < 0)
            return credit + getBalance();
        else
            return credit;
    }
    void deposit(const Date& date, double amount, const string& desc);
    void withdraw(const Date& date, double amount, const string& desc);
    void settle(const Date& date);
    void show()const;
};

 

account.cpp

#include"account.h"
#include<cmath>
#include<iostream>

using namespace std;
double Account::total = 0;

Account::Account(const Date& date, const string& id) :id{ id }, balance{ 0 } {
    date.show(); cout << "\t#" << id << "created" << endl;
}
void Account::record(const Date& date, double amount, const string& desc) {
    amount = floor(amount * 100 + 0.5) / 100;
    balance += amount; total += amount;
    date.show();
    cout << "\t#" << id << "\t" << amount << "\t" << balance << "\t" << desc << endl;
}
void Account::show() const { cout << id << "\tBalance: " << balance; }
void Account::error(const string& msg)const {
    cout << "Error(#" << id << ")" << msg << endl;
}

//SavingsAccount 类相关成员函数的实现
SavingsAccount::SavingsAccount(const Date&date,const string &id,double rate):Account {date,id},rate{rate},acc{date,0}{}
void SavingsAccount::deposit(const Date& date, double amount, const string& desc) {
    record(date, amount, desc);
    acc.change(date, getBalance());
}
void SavingsAccount::withdraw(const Date& date, double amount, const string& desc) {
    if (amount > getBalance()) {
        error("not enough money");
    }else{
        record(date, -amount, desc);
        acc.change(date, getBalance());
    }
}
void SavingsAccount::settle(const Date& date) {
    if (date.getMonth() == 1) {
        double interest = acc.getSum(date) * rate / (date - Date(date.getYear() - 1, 1, 1));
        if (interest != 0)
            record(date, interest, "interest");
        acc.reset(date, getBalance());
    }
}

//CreditAccount 类相关成员函数的实现
CreditAccount::CreditAccount(const Date&date,const string &id,double credit,double rate,double fee):
    Account{date,id},credit{credit},rate{rate},fee{fee},acc{date,0}{}
void CreditAccount::deposit(const Date& date, double amount, const string& desc) {
    record(date, amount, desc);
    acc.change(date, getDebt());
}
void CreditAccount::withdraw(const Date& date, double amount, const string& desc) {
    if (amount - getBalance() > credit) {
        error("not enough credit");
    }
    else {
        record(date, -amount, desc);
        acc.change(date, getDebt());
    }
}
void CreditAccount::settle(const Date& date) {
    double interest = acc.getSum(date) * rate;
    if (interest != 0)record(date, interest, "interest");
    if (date.getMonth() == 1)
        record(date, -fee, "annual fee");
    acc.reset(date, getDebt());
}
void CreditAccount::show() const {
    Account::show();
    cout << "\tAvailable credit:" << getAvailableCredit();
}

 

8_8.cpp

#include"account.h"
#include<iostream>
using namespace std;

void test() {
    Date date(2008, 11, 1);
    //建立几个账户
    SavingsAccount sa1(date, "S3755217", 0.015);
    SavingsAccount sa2(date, "02342342", 0.015);
    CreditAccount ca(date, "C5392394", 10000, 0.0005, 50);
    Account* accounts[] = { &sa1,&sa2,&ca };
    const int n = sizeof(accounts) / sizeof(Account*);
    cout << "(d)deposit (w)withdraw (s)show (c)change day (n)next month (e)exit" << endl;
    char cmd;
    do {
        date.show();
        cout << "\tTotal: " << Account::getTotal() << "\tcommand>";
        int index, day;
        double amount;
        string desc;
        cin >> cmd;
        switch (cmd) {
        case 'd':
            cin >> index >> amount;
            getline(cin, desc);
            accounts[index]->deposit(date, amount, desc);
            break;
        case 'w':
            cin >> index >> amount;
            getline(cin, desc);
            accounts[index]->withdraw(date, amount, desc);
            break;
        case 's':
            for (int i = 0; i < n; i++) {
                cout << "[" << i << "]";
                accounts[i]->show();
                cout << endl;
            }
            break;
        case 'c':
            cin >> day;
            if (day < date.getDay())
                cout << "You cannot specify a previous day";
            else if (day > date.getMaxDay())
                cout << "Invalid day";
            else
                date = Date(date.getYear(), date.getMonth(), day);
            break;
        case 'n':
            if (date.getMonth() == 12)
                date = Date(date.getYear() + 1, 1, 1);
            else
                date = Date(date.getYear(), date.getMonth() + 1, 1);
            for (int i = 0; i < n; i++)
                accounts[i]->settle(date);
            break;
        }
    } while (cmd != 'e');
}



int main() {
    test();
    return 0;
}

 

运行测试截图:

 

 

五、实验总结

实现类的继承与多态化,有助于我们更好地使用C++这门语言:

  1. 代码重用性(Code Reusability):

    • 基类功能重用: 通过继承,子类可以继承基类的成员函数和数据成员,从而避免了重复编写相似的代码。
    • 派生类扩展: 派生类可以在基类的基础上添加新的功能,从而使得代码更加灵活和可扩展。
  2. 抽象与封装(Abstraction and Encapsulation):

    • 抽象: 通过基类定义共同的接口和行为,实现了对对象的抽象描述,使得程序员可以专注于对象的高层次概念而不必关注底层的实现细节。
    • 封装: 派生类可以隐藏其实现的细节,只暴露出与外部交互的接口,提高了代码的安全性和可维护性。
  3. 多态性(Polymorphism):

    • 运行时多态: 通过虚函数和动态绑定,可以在运行时决定调用哪个函数,从而实现了多态性。这使得可以用基类指针或引用来操作派生类对象,提高了代码的灵活性。
    • 函数重载: 在同一个类中可以定义多个同名函数,通过参数的不同来区分它们,提供了静态多态性的实现。
  4. 易维护性和扩展性(Maintainability and Extensibility):

    • 易维护性: 通过将相关的功能放在一个类中,代码的组织更加清晰,容易理解和维护。
    • 易扩展性: 可以通过添加新的派生类来扩展系统的功能,而无需修改现有的代码,从而降低了引入新功能的风险。
  5. 代码结构和组织(Code Structure and Organization):

    • 层次结构: 类的继承可以形成层次结构,使得代码的组织更加有序,更容易理解。
    • 模块化: 每个类可以看作是一个独立的模块,有助于将代码分解成更小、更易管理的单元。
  6. 接口和协议(Interfaces and Contracts):

    • 接口定义: 通过纯虚函数(抽象类)或虚函数,可以定义类的接口,规定了派生类需要实现的功能。
    • 协议遵循: 派生类必须遵循基类的接口,这种强制性的约束有助于确保系统的一致性和可靠性。

 

标签:const,string,继承,double,void,多态,Date,实验,date
From: https://www.cnblogs.com/Rainbow-forest/p/17873441.html

相关文章

  • 实验5
    #include<iostream>#include<string>usingnamespacestd;classMachinePets{private:stringnickname;public:MachinePets(conststrings):nickname{s}{}stringget_nickname()const{returnnickname;}virtualstringtalk()......
  • 实验五
     找出最大最小值 指向x【0】的地址 返回最大值的地址  sizeof计算数据类型所占据的空间,比如字节长度,而strlen计算字符串的长度,从第一个字符遇到结束符停止。sizeof包含“\0”,strlen则不计算。     #defineN80voidencoder(char*str);//函数声......
  • 百度api实验总结
    通过这次实验还是反映了之前讲到的,修改代码必须要建立在看懂的情况下,同样避免错误也是一样的,刚开始拿到这样一个json返回值的时候很蒙,饭后想到了之前看到的提取其中的值,我就说查一下吧查到了不过是python的不过原理都一样我就说改改吧但是不成功,用为python的json包导进去很简单,直......
  • 实验5
    3.hpp#include<iostream>#include<string>usingnamespacestd;classMachinePets{public:MachinePets(conststrings);MachinePets();stringget_nickname()const;public:virtualstringtalk()=0;protected:......
  • C0P8000计算机组成原理实验系统24位控制位功能
    因为做到了这个课设所以存一下相关内容24位控制位XRD:外部设备读信号,当给出了外设的地址后,输出此信号,从指定外设读数据。EMWR:程序存储器EM写信号。EMRD:程序存储器EM读信号。PCOE:将程序计数器PC的值送到地址总线ABUS上。EMEN:将程序存储器EM与数据总线DBUS......
  • 实验五
    任务一publisher.hpp1#pragmaonce23#include<iostream>4#include<string>56usingstd::cout;7usingstd::endl;8usingstd::string;910//发行/出版物类:Publisher(抽象类)11classPublisher{12public:13Publisher(conststr......
  • .Net实验一 语言基础
    一、实验目的熟悉VisualStido.NET实验环境;掌握控制台程序的编写方法;掌握C#程序设计语言的语法基础;掌握控制语句和数组的使用。二、实验要求根据题目要求,编写C#程序,并将程序代码和运行结果写入实验报告。三、实验内容编写一个控制台应用程序,输入三角形或者长方形边长,计......
  • 软件设计实验 24:模板方法模式
      实验24:模板方法模式本次实验属于模仿型实验,通过本次实验学生将掌握以下内容:1、理解模板方法模式的动机,掌握该模式的结构;2、能够利用模板方法模式解决实际问题。 [实验任务一]:数据库连接对数据库的操作一般包括连接、打开、使用、关闭等步骤,在数据库操作模板类中我......
  • Java继承与多态:实现代码复用与扩展的利器
    一、概述在Java编程语言中,继承和多态是两个非常重要的概念,它们是实现代码复用、扩展性和灵活性的关键。本文将详细介绍Java继承和多态的概念、实现方法以及注意事项,帮助您更好地理解和应用这两种技术。二、Java继承继承的概念Java继承是面向对象编程中的一个基本概念,它允许我们基于......
  • 第五次实验
    任务1-1//验证性实验:指针变量作为函数参数,指针变量作为函数的返回值#include<stdio.h>#defineN5voidinput(intx[],intn);voidoutput(intx[],intn);voidfind_min_max(intx[],intn,int*pmin,int*pamx);intmain(){ inta[N]; intmin,max; printf("录入%d......