首页 > 解决方案 > 如何简化 if - else 语句?

问题描述

我完成了一个 - 非常菜鸟的创建,因为我仍然是菜鸟 :( - 充当银行账户的程序。

我有main.cpp, Account.cpp, Account.h.

main.cpp我有:

#include <iostream>
#include <string>
#include "Account.h"

int main()
{   
    Account Luigis;
    Luigis.set_name("Luigi's Account");
    Luigis.set_balance(0);
    std::string letter;
   
do  {
    std::cout << "Your current balance is: " << Luigis.get_balance() << std::endl;
    std::cout << "What would you like, to deposit, to withdraw or to exit?" << std::endl;
    std::cout << "(D for 'Deposit, W for 'Withdraw' and Q for 'Exit') D/W/Q ";
    std::cin >> letter;
    if(letter == "d" || letter == "D") {
        std::cout << "How much would you like to deposit?: ";
        double amountDeposit{};
        std::cin >> amountDeposit;
        Luigis.deposit(amountDeposit);
    }
        else if(letter == "w" || letter == "W") {
            std::cout << "How much would you like to withdraw?: ";
            double amountWithdraw;
            std::cin >> amountWithdraw;
            Luigis.withdraw(amountWithdraw);
        }
            else if(letter == "q" || letter == "Q") {
                std::cout << "Goodbye!" << std::endl;
            }
                else 
                std::cout << "Invalid selection, please try again with: D for Deposit, W for Withdraw, Q for Exist" << std::endl;
                
    
    } while (letter != "q" && letter != "Q");
    
    return 0;
}

Account.cpp我有:

#include "Account.h"
#include <string>
#include <iostream>
//IMPLEMENTATION or DEFINITION

bool Account::deposit(double amount) {
    //money you're doing to deposit
    balance = balance + amount;
    }

bool Account::withdraw(double amount) {
        //if you can withdraw
        if(balance-amount >= 0) {
             balance = balance - amount;
             return true;
            } else {
                std::cout << "You cannot withdraw the specified amount - balance is too low and it would result in " << balance - amount << " funds!" << std::endl;
                return false;
                }
        }
    
void Account::set_name(std::string name) {
        this->name = name;
        }

std::string Account::get_name(){
        return name;
        }

void Account::set_balance(double balance) {
        this->balance = balance;
    }

double Account::get_balance() {
        return balance;
    }

Account.h我有:

#ifndef _ACCOUNT_H_
#define _ACCOUNT_H_
#include <string>
//SPECIFICATION or DECLARATION


class Account
{
private:
    //attributes
    std::string name;
    double balance;
public:
    //methods
    bool deposit(double amount);
    bool withdraw(double amount);
    void set_name(std::string name);
    std::string get_name();
    void set_balance(double balance);
    double get_balance();
};

#endif // _ACCOUNT_H_

我的问题是:既然我“知道”如何使用函数,我该如何简化if-else语句?main.cpp我的朋友说我应该能够使用函数并使事情更抽象,以避免写所有的ifandelse语句。

基本上,我将 OOP 与过程编程混合在一起,这违背了目的。

标签: c++functionclassoopc++17

解决方案


我认为您对条件构造的复杂性有夸大的印象。对我(以及至少 5 个其他人,从评论和“同意”得到的结果来看)它们似乎并不过分复杂。

因此,我提出了一些改变您的印象的方法,尽管它根本不会改变功能:
请应用一致且严格的缩进,实际样式无关紧要。
如果您允许我提出我最喜欢的风格,以下是结果示例:

if(letter == "d" || letter == "D")
{
    std::cout << "How much would you like to deposit?: ";
    double amountDeposit{};
    std::cin >> amountDeposit;
    Luigis.deposit(amountDeposit);
} else if(letter == "w" || letter == "W")
{
    std::cout << "How much would you like to withdraw?: ";
    double amountWithdraw;
    std::cin >> amountWithdraw;
    Luigis.withdraw(amountWithdraw);
} else if(letter == "q" || letter == "Q")
{
    std::cout << "Goodbye!" << std::endl;
} else 
{
    std::cout << "Invalid selection, please try again with: D for Deposit, W for Withdraw, Q for Exist"
              << std::endl;
}

推荐阅读