ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

c++实现状态模式

2021-11-18 12:34:39  阅读:162  来源: 互联网

标签:acc 状态 double void amount 模式 state c++ balance


实验:用Java代码模拟实现课堂上的“银行账户”的实例,要求编写客户端测试代码模拟用户存款和取款,注意账户对象状态和行为的变化。

由于是c++,不像java那么灵活,所以类的调用方面出了些许多问题,包括调用,出现了很多错误,不过好在都解决了。

 

代码:

#include<iostream>
using namespace std;
class Account;
class AccountState{
public:
    Account *acc;
   double balance;
   string stateName;
public:
     virtual void stateCheck()=0;
     void deposit(double amount);
     virtual void withdraw(double amount);
};
class Account{
private:
    AccountState *state;
    string owner;
public:
    Account(string owner,double init);

    void setState(AccountState *state) {
        this->state=state;
    }
    AccountState* getState() {
        return this->state;
    }
    string getOwner() {
        return this->owner;
    }
    void deposit(double amount) {
        state->deposit(amount);
    }
    void withdraw(double amount) {
        state->withdraw(amount);
    }
};
class RedState :public AccountState{
public:
    RedState(AccountState *state) {
        this->balance = state->balance;
        this->acc = state->acc;
        this->stateName="透支状态";
    }
    void withdraw(double amount){cout<<"您的账户处于透支状态,不能取款!"<<endl;}
    void stateCheck();
};
class YellowState :public AccountState{
public:
    YellowState(AccountState *state) {
         this->balance = state->balance;
         this->acc = state->acc;
         this->stateName="欠费状态";
    }
    void stateCheck();
};
class GreenState:public AccountState{
public:
     GreenState(double balance,Account *acc) {
        this->balance = balance;
        this->acc = acc;
        this->stateName="正常状态";
    }
    GreenState(AccountState *state) {
        this->acc=state->acc;
        this->balance=state->balance;
        this->stateName="正常状态";
    }
    void stateCheck() {
        if(balance>=-1000&&balance<0) {
            acc->setState(new YellowState(this));
        }else if(balance<-1000) {
            acc->setState(new RedState(this));
        }
        else{
            acc->setState(new GreenState(this));
        }
    }
};
void RedState::stateCheck(){
    if(balance>=-1000&&balance<0) {
            acc->setState(new YellowState(this));
        }else if(balance<-1000) {
            acc->setState(new RedState(this));
        }
        else {
            acc->setState(new GreenState(this));
        }
}
void YellowState::stateCheck() {
        if(balance>=-1000&&balance<0) {
            acc->setState(new YellowState(this));
        }else if(balance<-1000) {
            acc->setState(new RedState(this));
        }
        else{
            acc->setState(new GreenState(this));
        }
}
void AccountState::deposit(double amount){
        cout<<acc->getOwner()<<"存款"<<amount<<endl;
        this->balance+=amount;
        stateCheck();
        cout<<"账户余额:"<<this->balance<<endl;
        cout<<"现在账户状态:"<<acc->getState()->stateName<<endl;
    }
void AccountState::withdraw(double amount){
        cout<<acc->getOwner()<<"取款"<<amount<<endl;
        this->balance-=amount;
        stateCheck();
        cout<<"账户余额:"<<this->balance<<endl;
        cout<<"现在账户状态:"<<acc->getState()->stateName<<endl;
    }
Account::Account(string owner,double init){
    this->owner=owner;
    this->state=new GreenState(init,this);
    cout<<"恭喜"<<this->owner<<"开户成功!银行卡初始金额:"<<init<<endl;
    cout<<"------------------------------"<<endl;
}
int main(){
        Account *account=new Account("张三",100);
        account->deposit(100);
        cout<<"------------------------------"<<endl;
        account->withdraw(500);
        cout<<"------------------------------"<<endl;
        account->deposit(1000);
        cout<<"------------------------------"<<endl;
        account->withdraw(2000);
        cout<<"------------------------------"<<endl;
        cout<<account->getState()->stateName;
        account->withdraw(100);
        cout<<"------------------------------"<<endl;
        account->deposit(2000);
        cout<<"------------------------------"<<endl;
        return 0;
}
View Code1
#include<iostream>
using namespace std;
class Account;
class AccountState{
public:
    Account *acc;
   double balance;
   string stateName;
public:
    virtual void stateCheck()=0;
    virtual void deposit(double amount)=0;
    virtual void withdraw(double amount)=0;
};
class Account{
private:
    AccountState *state;
    string owner;
public:
    Account(string owner,double init);

    void setState(AccountState *state) {
        this->state=state;
    }
    AccountState* getState() {
        return this->state;
    }
    string getOwner() {
        return this->owner;
    }
    void checkState(){
        state->stateCheck();
    }
    void deposit(double amount) {
        cout<<this->owner<<"存款"<<amount<<endl;
        state->deposit(amount);
        cout<<"账户余额:"<<state->balance<<endl;
        cout<<"现在账户状态:"<<state->stateName<<endl;
    }
    void withdraw(double amount) {
        cout<<this->owner<<"取款"<<amount<<endl;
        state->withdraw(amount);
        cout<<"账户余额"<<state->balance<<endl;
        cout<<"现在账户状态:"<<state->stateName<<endl;
    }
};
class RedState :public AccountState{
public:
    RedState(AccountState *state) {
        this->balance = state->balance;
        this->acc = state->acc;
        this->stateName="透支状态";
    }
    void stateCheck();
    void deposit(double amount) {
        this->balance+=amount;
        stateCheck();
    }
    void withdraw(double amount) {
          cout<<"您的账户处于透支状态,不能取款!"<<endl;
    }
};
class YellowState :public AccountState{
public:
    YellowState(AccountState *state) {
         this->balance = state->balance;
         this->acc = state->acc;
         this->stateName="欠费状态";
    }
    void stateCheck();
    void deposit(double amount) {
        this->balance+=amount;
        stateCheck();
    }
    void withdraw(double amount) {
        this->balance-=amount;
        stateCheck();
    }
};
class GreenState:public AccountState{
public:
     GreenState(double balance,Account *acc) {
        this->balance = balance;
        this->acc = acc;
        this->stateName="正常状态";
    }
    GreenState(AccountState *state) {
        this->acc=state->acc;
        this->balance=state->balance;
        this->stateName="正常状态";
    }
    void stateCheck() {
        if(balance>=-1000&&balance<0) {
            acc->setState(new YellowState(this));
        }else if(balance<-1000) {
            acc->setState(new RedState(this));
        }
        else{
            acc->setState(new GreenState(this));
        }
    }
    void deposit(double amount) {
        this->balance+=amount;
        stateCheck();
    }
    void withdraw(double amount) {
        this->balance-=amount;
        stateCheck();
    }
};
void RedState::stateCheck(){
    if(balance>=-1000&&balance<0) {
            acc->setState(new YellowState(this));
        }else if(balance<-1000) {
            acc->setState(new RedState(this));
        }
        else {
            acc->setState(new GreenState(this));
        }
}
void YellowState::stateCheck() {
        if(balance>=-1000&&balance<0) {
            acc->setState(new YellowState(this));
        }else if(balance<-1000) {
            acc->setState(new RedState(this));
        }
        else{
            acc->setState(new GreenState(this));
        }
}
Account::Account(string owner,double init){
    this->owner=owner;
    this->state=new GreenState(init,this);
    cout<<"恭喜"<<this->owner<<"开户成功!银行卡初始金额:"<<init<<endl;
    cout<<"------------------------------"<<endl;
}
int main(){
        Account *account=new Account("张三",100);
        account->deposit(100);
        cout<<"------------------------------"<<endl;
        account->withdraw(500);
        cout<<"------------------------------"<<endl;
        account->deposit(1000);
        cout<<"------------------------------"<<endl;
        account->withdraw(2000);
        cout<<"------------------------------"<<endl;
        account->withdraw(100);
        cout<<"------------------------------"<<endl;
        account->deposit(2000);
        cout<<"------------------------------"<<endl;
        return 0;
}
View Code2

两种方法运行结果:

 

 个人觉得第一种比较好。

标签:acc,状态,double,void,amount,模式,state,c++,balance
来源: https://www.cnblogs.com/yuxuan-light-of-Taihu-Lake/p/15571752.html

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

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

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

ICode9版权所有