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

实验5 继承和多态

时间:2023-12-03 20:11:34浏览次数:22  
标签:std const string 继承 double 多态 Date 实验 date

实验任务3 pets.hpp

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

class MachinePets{
public:
    MachinePets(const string s):nickname(s){}
    const string get_nickname(){
        return nickname;    
    }
    virtual string talk()=0;
private:
    string nickname;
};

class PetCats:public MachinePets
{
    public:
        PetCats(const string s):MachinePets(s){}
        string talk();
    private:
        string catvoice;
};

string PetCats::talk(){
    catvoice="miao wu~";
    return catvoice;
}

class PetDogs : public MachinePets{
public:
    PetDogs(const string s):MachinePets(s){}
    string talk();
private:
    string dogvoice;
};

string PetDogs::talk(){
    dogvoice="wang wang~";
    return dogvoice;
}

void play(MachinePets *p){
    cout<<p -> get_nickname()<<"  says  "<<p -> talk()<<endl;
}
View Code 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();
}
View Code

 

实验任务4 Person.hpp
#pragma once
#include <iostream>
#include <string>

class Person {
public:
    Person(const std::string& name = "", const std::string& telephone = "", const std::string& email = "");
    
    Person(const Person& p);

    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:
    std::string name;
    std::string telephone;
    std::string email;
};

Person::Person(const std::string& name, const std::string& telephone, const std::string& email)
    : name(name), telephone(telephone), email(email) {}


Person::Person(const Person& p)
    : name(p.name), telephone(p.telephone), email(p.email) {}

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

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

std::ostream& operator<<(std::ostream& os, const Person& p) {
    os << "Name: " << p.name << "\nTelephone: " << p.telephone << "\nEmail: " << p.email << "\n";
    return os;
}

std::istream& operator>>(std::istream& is, Person& p) {
    std::cout << "Enter Name: ";
    std::getline(is, p.name);

    std::cout << "Enter Telephone: ";
    std::getline(is, p.telephone);

    std::cout << "Enter Email: ";
    std::getline(is, p.email);

    return is;
}

bool operator==(const Person& p1, const Person& p2) {
    return (p1.name == p2.name && p1.telephone == p2.telephone && p1.email == p2.email);
}
View Code 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();
}
View Code

 

 

实验任务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;
    }
};
View Code 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();
}
View Code accumulator.h
#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;
    }

};
View Code account.h
#include"date.h"
#include"accumulator.h"
#include<string>
class Account
{
private:
    std::string id;
    double balance;
    static double total;
protected:
    Account(const Date& date, const std::string& id);
    void record(const Date& date, double amount, const std::string& desc);
    void error(const std::string& msg) const;
public:
    const std::string& getId() const { return id; }
    double getBalance() const { return balance; }
    static double getToal() { return total; }
    virtual void deposit(const Date& date, double amount, const std::string& desc) = 0;
    virtual void withdraw(const Date& date, double amount, const std::string& desc) = 0;
    virtual void settle(const Date& date);
    virtual void show() const;
};
class SavingsAccount :public Account
{
private:
    Accumulator acc;
    double rate;
public:
    SavingsAccount(const Date& date, const std::string& id, double rate);
    double getRate() const { return rate; }
    void deposit(const Date& date, double amount, const std::string& desc);
    void withdraw(const Date& date, double amount, const std::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 std::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 std::string& desc);
    void withdraw(const Date& date, double amount, const std::string& desc);
    void settle(const Date& date);
    void show() const;
};
View Code account.cpp
#include"account.h"
#include<cmath>
#include<iostream>
using namespace std;
double Account::total = 0;
Account::Account(const Date& date, const std::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(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(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();
}
View Code

 

8_8.cpp
#include"account.h"
#include<iostream>
using namespace std;
int main()
{
    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::getToal() << "\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');
    return 0;
}
View Code

 

标签:std,const,string,继承,double,多态,Date,实验,date
From: https://www.cnblogs.com/mzxfcyt/p/17859753.html

相关文章

  • 实验5 继承和多态
    实验任务1publisher.hpp#pragmaonce#include<iostream>#include<string>usingstd::cout;usingstd::endl;usingstd::string;classPublisher{public:Publisher(conststring&s="");public:virtualvoidpublish()=......
  • 实验五-继承和多态
    pets.hpp1#ifndefPETS_HPP2#definePETS_HPP34#include<iostream>5#include<string>67classMachinePets{8protected:9std::stringnickname;10public:11MachinePets(conststd::strings):nickname(s){}12......
  • 实验5 ———
    1.1找到最大值和最小值数组x的第一个元素x[0]的值1.2最大值所在元素的地址不,地址不能交换 2.11__23   sizeof(s1)计算的是数组s1在内存中所占用的字节数strlen(s1)统计的是字符串s1中的字符数2__不能  未分配地址3__能2.21__s1不再是一个数组,而......
  • 实验5
    任务5:1#ifndef__DATE_H__2#define__DATE_H__3classDate{4private:5intyear;6intmonth;7intday;8inttotalDays;9public:10Date(intyear,intmonth,intyear);11......
  • 实验5 继承和多态
    四、实验结论实验任务3pets.hpp#pragmaonce#include<iostream>#include<string>usingnamespacestd;classMachinePets{public:MachinePets(conststring&s="");stringget_nickname()const;public:virtualstringtalk()......
  • 实验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......