Day12_09

面向?qū)ο蟀咐C合案例

ATM機(jī)的模擬程序

package Day12_09_01;
/**
 * 銀行賬戶
 * @author YY
 *
 */
public class Account
{
    private String id;
    private String  password;
    private double balance;//余額
    
    
    public Account(String id,String password,double balance)
    {
        this.id=id;
        this.password=password;//初始密碼
        this.balance=balance;
    }
    
    public double getBalance()
    {
        return balance;
    }
    
    public String getId()
    {
        return id;
    }
    
    public void setPassword(String password)
    {
        this.password = password;
    }
/**
 * 驗(yàn)證密碼
 * @param password 傳進(jìn)來的密碼
 * @return 密碼匹配返回ture允坚,否則返回false
 */
    public boolean isValid(String password)
    {
        return this.password.equals(password);
    }
    
/**
 * 存錢
 * @param money 存入的金額
 */
    public void deposit(double money)
    {
        balance+=money;
    }
/**
 * 取錢
 * @param money 取多少錢
 * @return 成功返回true定续,否則返回false
 */
    public boolean withdraw(double money)
    {
        if(money<=balance)
        {
            balance-=money;
            return true;
        }
        return false;
    }
}```

package Day12_09_01;

public class ATM
{
private Account currentAccount;// 當(dāng)前銀行賬戶

// 用一個(gè)數(shù)組模擬數(shù)據(jù)庫系統(tǒng),預(yù)先保存若干個(gè)賬戶
private Account[] accountsArray =
{ new Account("11223344", "123123", 1200), new Account("22334455", "123456", 50),
        new Account("33445566", "888888", 9999999) };

/**
 * 讀卡
 * 
 * @param id
 *            銀行賬戶id
 */
public boolean readCard(String id)// 讀卡
{
    for (Account account : accountsArray)
    {
        if (account.getId().equals(id))
        {
            currentAccount = account;
            return true;
        }
    }
    return false;
}

/**
 * 驗(yàn)證密碼
 * 
 * @param password
 * @return
 */
public boolean verify(String password)// 驗(yàn)證身份
{
    return currentAccount.isValid(password);
}

/**
 * 顯示當(dāng)前余額
 * 
 * @return
 */
public double showBalance()
{
    return currentAccount.getBalance();
}

/**
 * 存錢
 * 
 * @param money
 */
public void deposit(int money)
{
    currentAccount.deposit(money);
}

/**
 * 取錢
 * 
 * @param money
 * @return
 */
public boolean withdraw(int money)
{
    return currentAccount.withdraw(money);
}

/**
 * 修改密碼
 * 
 * @param newPassword
 */
public void changePassword(String newPassword)
{
    currentAccount.setPassword(newPassword);
}

/**
 * 轉(zhuǎn)賬
 * 
 * @param otherId
 * @param money
 */
public boolean transfer(String otherId, double money)// 轉(zhuǎn)賬
{
    for (Account account : accountsArray)
    {
        if (account.getId().equals(otherId))
        {
            Account otherAccount = account;
            if (currentAccount.getBalance() >= money)
            {
                currentAccount.withdraw(money);
                otherAccount.deposit(money);
                return true;
            } else
            {
                return false;
            }
        }
    }
    return false;
}

/**
 * 退卡
 */
public void quitCard()
{
    currentAccount = null;
}

}


- 花括號(hào)表示一個(gè)作用域,在某個(gè)花括號(hào)定義的變量只在此作用域生效

package Day12_09_01;

import java.util.Scanner;

public class ATMTest
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
ATM atm = new ATM();
boolean isRunning = true;

    while (isRunning)
    {
        System.out.println("歡迎使用賤人銀行ATM雞");
        System.out.println("請插入銀行卡");
        String id = input.next();
    
        atm.readCard(id);

        if (atm.readCard(id))
        {
            int counter = 0;
            boolean isCorrect = false;
            do
            {
                counter++;
                System.out.println("請輸入密碼:");
                String password = input.next();
                isCorrect = atm.verify(password);

            } while (counter < 3 && !isCorrect);

            if (isCorrect)
            {
                boolean flag = true;
                while (flag)
                {
                    System.out.println("1.查詢余額:");
                    System.out.println("2.存款:");
                    System.out.println("3.取款:");
                    System.out.println("4.轉(zhuǎn)賬:");
                    System.out.println("5.修改密碼:");
                    System.out.println("6.退卡:");
                    int choice;
                    do
                    {
                        System.out.println("請選擇:");
                        choice = input.nextInt();
                    } while (choice < 1 || choice > 6);

                    switch (choice)
                    {
                    case 1:
                        System.out.println("賬戶余額為:" + atm.showBalance());
                        break;
                    // 花括號(hào)表示一個(gè)作用域,在某個(gè)花括號(hào)定義的變量只在此作用域生效
                    case 2:
                    {
                        System.out.println("請放入鈔票:");
                        int money = input.nextInt();
                        atm.deposit(money);
                        System.out.println("存款成功!");
                        break;
                    }
                    case 3:
                    {
                        System.out.println("請輸入取款金額:");
                        int money = input.nextInt();
                        if (atm.withdraw(money))
                        {
                            System.out.println("請取走你的鈔票!");
                        } else
                        {
                            System.out.println("余額不足日裙!");
                        }
                    }
                        break;
                    case 4:
                        System.out.println("請輸入轉(zhuǎn)入賬號(hào):");
                        String otherId = input.next();
                        System.out.println("請輸入轉(zhuǎn)入金額:");
                        double money = input.nextDouble();
                        if (atm.transfer(otherId, money))
                        {
                            System.out.println("轉(zhuǎn)賬成功!");
                        } else
                        {
                            System.out.println("轉(zhuǎn)賬失敗~");
                        }
                        break;
                    case 5:
                        System.out.println("請輸入新密碼:");
                        String newpassword = input.next();
                        System.out.println("請?jiān)俅屋斎耄?);
                        String repwd = input.next();
                        if (newpassword.equals(repwd))
                        {
                            atm.changePassword(newpassword);
                            System.out.println("密碼已修改惰蜜!");
                        } else
                        {
                            System.out.println("兩次輸入不一致昂拂!");
                        }
                        break;
                    case 6:
                        System.out.println("請取走你的卡片!");
                        flag = false;
                        break;

                    }
                }
            } else
            {
                System.out.println("已吞卡");
            }
        }
    }
    input.close();
}

}


#繼承的相關(guān)概念
###繼承的特性
- 子類擁有父類非private的屬性抛猖,方法和構(gòu)造器格侯。
- 子類可以擁有自己的屬性和方法,即子類可以對父類進(jìn)行擴(kuò)展财著。
- 子類可以用自己的方式實(shí)現(xiàn)父類的方法养交。
- Java的繼承是單繼承,但是可以多重繼承瓢宦,單繼承就是一個(gè)子類只能繼承一個(gè)父類,多重繼承就是灰羽,例如A類繼承B類驮履,B類繼承C類鱼辙,所以按照關(guān)系就是C類是B類的父類,B類是A類的父類玫镐,這是java繼承區(qū)別于C++繼承的一個(gè)特性倒戏。
- 提高了類之間的耦合性(繼承的缺點(diǎn),耦合度高就會(huì)造成代碼之間的聯(lián)系)恐似。

###特別注意
- 子類不能繼承父類的構(gòu)造器(構(gòu)造方法或者構(gòu)造函數(shù))杜跷,但是父類的構(gòu)造器帶有參數(shù)的,則必須在子類的構(gòu)造器中顯式地通過super關(guān)鍵字調(diào)用父類的構(gòu)造器并配以適當(dāng)?shù)漠?dāng)屬列表矫夷。
- 如果父類有無參構(gòu)造器葛闷,則在子類的構(gòu)造器中用super調(diào)用父類構(gòu)造器不是必須的,如果沒有使用super關(guān)鍵字双藕,系統(tǒng)會(huì)自動(dòng)調(diào)用父類的無參構(gòu)造器淑趾。





最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市忧陪,隨后出現(xiàn)的幾起案子扣泊,更是在濱河造成了極大的恐慌,老刑警劉巖嘶摊,帶你破解...
    沈念sama閱讀 206,602評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件延蟹,死亡現(xiàn)場離奇詭異,居然都是意外死亡叶堆,警方通過查閱死者的電腦和手機(jī)阱飘,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,442評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蹂空,“玉大人俯萌,你說我怎么就攤上這事∩险恚” “怎么了咐熙?”我有些...
    開封第一講書人閱讀 152,878評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長辨萍。 經(jīng)常有香客問我棋恼,道長,這世上最難降的妖魔是什么锈玉? 我笑而不...
    開封第一講書人閱讀 55,306評論 1 279
  • 正文 為了忘掉前任爪飘,我火速辦了婚禮,結(jié)果婚禮上拉背,老公的妹妹穿的比我還像新娘师崎。我一直安慰自己,他們只是感情好椅棺,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,330評論 5 373
  • 文/花漫 我一把揭開白布犁罩。 她就那樣靜靜地躺著齐蔽,像睡著了一般。 火紅的嫁衣襯著肌膚如雪床估。 梳的紋絲不亂的頭發(fā)上含滴,一...
    開封第一講書人閱讀 49,071評論 1 285
  • 那天,我揣著相機(jī)與錄音丐巫,去河邊找鬼谈况。 笑死,一個(gè)胖子當(dāng)著我的面吹牛递胧,可吹牛的內(nèi)容都是我干的碑韵。 我是一名探鬼主播,決...
    沈念sama閱讀 38,382評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼谓着,長吁一口氣:“原來是場噩夢啊……” “哼泼诱!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起赊锚,我...
    開封第一講書人閱讀 37,006評論 0 259
  • 序言:老撾萬榮一對情侶失蹤治筒,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后舷蒲,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體耸袜,經(jīng)...
    沈念sama閱讀 43,512評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,965評論 2 325
  • 正文 我和宋清朗相戀三年牲平,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了堤框。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,094評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡纵柿,死狀恐怖蜈抓,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情昂儒,我是刑警寧澤沟使,帶...
    沈念sama閱讀 33,732評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站渊跋,受9級特大地震影響腊嗡,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜拾酝,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,283評論 3 307
  • 文/蒙蒙 一燕少、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧蒿囤,春花似錦客们、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,286評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽嗽桩。三九已至,卻和暖如春凄敢,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背湿痢。 一陣腳步聲響...
    開封第一講書人閱讀 31,512評論 1 262
  • 我被黑心中介騙來泰國打工涝缝, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人譬重。 一個(gè)月前我還...
    沈念sama閱讀 45,536評論 2 354
  • 正文 我出身青樓拒逮,卻偏偏與公主長得像,于是被迫代替她去往敵國和親臀规。 傳聞我的和親對象是個(gè)殘疾皇子滩援,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,828評論 2 345

推薦閱讀更多精彩內(nèi)容