关于继承的困惑

时间:2017-08-25 13:05:04

标签: c++ inheritance hierarchical

当我遇到这个问题时,我正在测试一个关于层次继承的小程序。该程序包含一个父类Bank和两个子类Withdraw&存款。

#include<iostream>
#include<conio.h>
#include<stdlib.h>

//Hierarchical Inheritance

using namespace std;

class bank{
        protected:

            char name[20];
            int age, id;
            float bal;


        public:
            void getData(){
                cout <<"Enter your name, age, bank ID and balance" << endl;
                cin >> name >> age >> id >> bal;
            }
            void display(){
                cout <<"Name: " << name << endl << "ID: " << id << endl;
                cout <<"Age: " << age <<endl <<"Balance: " << bal << endl;
            }
            void check(){
                cout <<"Your balance is " << bal << endl;
            }
};

class withdraw : public bank{

        float wd;
    public:
        void withdrawMoney(){
            cout << "Enter the amount to withdraw" << endl;
            cin >> wd;

            if(wd > bal)
                cout << "You cannot withdraw that much. Your balance is only " << bal << endl;
            else{
                bal = bal-wd;
                cout << "You successfully withdrew " << wd << ". Your remaining balance is " << bal << endl;
            }
        }

};

class deposit : public bank{

        float dp;
    public:
        void depo(){
            cout <<"Enter the amount to deposit" << endl;
            cin >> dp;
            bal = bal+dp;
            cout <<"You successfully deposited " << dp << ". Your balance is now " << bal << "." << endl;
        }
};


int main()
{
    int c;

    bank b;
    deposit d;
    withdraw w;

    b.getData();

    do{
        cout <<"***The Dank Bank***" << endl;
        cout <<"What do you want to do?\n 1)Withdraw\n 2)Deposit\n 3)Check Balance\n 4)Display all details\n 5)Exit\n" << endl;
        cin >> c;


          if(c == 1)
                w.withdrawMoney();
          else if (c == 2)
                d.depo();
          else if(c == 3)
                b.check();
          else if(c == 4)
                b.display();
          else if(c == 5)
                exit(0);
          else
                cout <<"Wrong choice." << endl;

          cout<<"Press any key to continue" << endl;
          getch();

    }
     while(1);

    getch();
    return 0;
    }

执行撤销功能时,我得到了这个输出:

  

你不能退出那么多。您的余额仅为6.03937e-039

使用存款功能时,输出显示存款金额而非实际余额。

  

您成功存入了1000.您的余额现在为1000。

两个子类使用的唯一变量是 bal ,所以我决定像这样全局声明它。

#include<iostream>
#include<conio.h>
#include<stdlib.h>
float bal;

该计划没有任何缺陷。但这样做会破坏使用继承的全部目的。

我很困惑。为什么会这样?

1 个答案:

答案 0 :(得分:2)

类是对象的外观和行为方式的描述。你是其中三个。一个描述您所谓的bank,一个deposit和一个withdraw

对象是类的实例。因此,对象是具有存储和类所说应该具有的行为的东西。您有三个对象:bdw

每个对象都有自己独立的存储空间。如果您希望对象知道另一个对象,您需要告诉它。 w无法找到b。如果您有b_barclaysb_natwestb_hsbc怎么办?你期望w找到哪一个?为什么呢?

我认为您所做的就是将类本组合在一起,这些类通过对象本身告诉编译器如何创建对象。一个继承自另一个类的类简单地说子类将包括父类的行为和存储。所以它说如果你创建两种类型的对象,那么孩子将拥有父母能力的超集。它不会创建任何存储共享;每个都有完全独立的存储空间,按照班级定义。