ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

11.24

2021-12-01 01:33:08  阅读:190  来源: 互联网

标签:string int Car 11.24 MachinePets include public


#include<iostream>
#include<iomanip>
#include<string>

using namespace std;

class Car
{
public:
    Car(string maker, string model, int year)
    {
        this->maker = maker;
        this->model = model;
        this->year = year;
        odometers = 0; 
    }
    void info();
    void update_odometers(int a);
    
private:
    string maker;
    string model;
    int year;
    int odometers;    
};

void Car::info()
{
    cout << left << setw(15) << "maker:" << maker << endl;
    cout << left << setw(15) << "model:" << model << endl;
    cout << left << setw(15) << "year:" << year << endl;
    cout << left << setw(15) << "odometers:" << odometers << endl;
}

void Car::update_odometers(int a)
{
    if(a < 0)
    {
        cout << "更新数值有误" << endl; 
    }
    else
    {
        odometers += a;
    }
    
}
#include<iostream>
#include<string>

using namespace std;

class Battery
{
public:
    Battery(int input = 70)
    {
        capacity = input;
    }
    int get_capacity(); 
private:
    int capacity;    
};

int Battery::get_capacity()
{
    return capacity;
}
#include<iostream>
#include<string>
#include<iomanip>
#include "Car.hpp"
#include "battery.hpp"

using namespace std;

class ElectricCar: public Car
{
    
private:
    Battery battery;
public:
    ElectricCar(string maker, string model, int year,int batter = 70):Car(maker,model,year),battery(batter){}
    void info();
};

void ElectricCar::info()
{
    Car::info();
    cout << left << setw(15) << "capacity:" << battery.get_capacity() << "-kWh" << endl;
 }
#include <iostream>
#include "electricCar.hpp"

int main()
{
    using namespace std;

    // test class of Car
    Car oldcar("Audi", "a4", 2016);
    cout << "--------oldcar's info--------" << endl;
    oldcar.update_odometers(25000);
    oldcar.info();

    cout << endl;

    // test class of ElectricCar
    ElectricCar newcar("Tesla", "model s", 2016);
    newcar.update_odometers(2500);
    cout << "\n--------newcar's info--------\n";
    newcar.info();
}

 

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

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

string MachinePets::get_nickname()
{
    return nickname;
}

class PetCats:public MachinePets
{
public:
    PetCats(const string s):MachinePets(s){}
    string talk()
    {
        string a = "miao wu~";
        return a;
    }    
    
};

class PetDogs:public MachinePets
{
public:
    PetDogs(const string s):MachinePets(s){}
    string talk()
    {
        string a = "wang wang~";
        return a;
    }
    
};
  
#include <iostream>
#include "pets.hpp"

void play(MachinePets *ptr)
{
    std::cout << ptr->get_nickname() << " says " << ptr->talk() << std::endl;
}

int main()
{
    PetCats cat("miku");
    PetDogs dog("da huang");

    play(&cat);
    play(&dog);
}

 

 实验总结:

这次实验复习类的组成,学习了虚函数的使用方法,算是很有收获的!!

标签:string,int,Car,11.24,MachinePets,include,public
来源: https://www.cnblogs.com/2967271912lala/p/15626819.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有