1.系統準備,首頁,用戶開戶功能
系統準備,首頁設計
系統準備內容分析:
每個用戶的帳戶資訊都是一個對象,需要提供帳戶類別
需要準備一個容器,用於儲存和系統全部帳戶對象資訊
首頁只需要包含:登錄和註冊2個功能
實現步驟:
定義帳戶類,用於後期建立帳戶物件封裝用戶的帳戶資訊
帳戶類別中的資訊至少需要包含(卡號,姓名,密碼,餘額,取現額度)
package com.wangxinhua; import java.util.ArrayList; import java.util.Scanner; public class ATMSystem { public static void main(String[] args) { // 1.准备系统需要的容器对象,用户存储账户对象 ArrayList<Account> accounts = new ArrayList(); // 2.准备系统的首页,登入,开户 showMain(accounts); } public static void showMain(ArrayList<Account> accounts) { System.out.println("========欢迎进入首页====="); Scanner sc = new Scanner(System.in); while(true) { System.out.println("请您输入您想做的操作:"); System.out.println("1.登录"); System.out.println("2.开户"); System.out.println("您可以输入命令了:"); int command = sc.nextInt(); switch(command) { case 1: //登入 break; case 2: //开户 break; default: System.out.println("您当前输入的操作命令不被支持!"); } } } }
#總結
使用者的帳號訊息,系統如何表示的?
定義帳戶類別Account,定義系統關心的屬性資訊
系統採用什麼來儲存全部使用者的帳戶物件資訊?
ArrayList<Account> accounts = new ArrayList<> ();
用戶開戶功能實作
#分析
開戶功能其實就是往系統的集合容器中存入一個新的帳戶物件的資訊
開戶功能實作步驟
定義方法完成開戶:
public static void register(ArrayList<Account> accounts){...}
鍵盤錄入姓名,秘密,確認密碼(需保證兩次密碼一致)
#產生帳號卡號,卡號必須由系統自動產生8位數字(必須保證卡號的唯一)
建立Account帳號類別物件使用者封裝帳號資訊(姓名,密碼,卡號)
把Account帳號類別物件存入到集合accounts中去。
package com.wangxinhua; import java.lang.reflect.Array; import java.util.ArrayList; import java.util.Random; import java.util.Scanner; public class ATMSystem { public static void main(String[] args) { // 1.准备系统需要的容器对象,用户存储账户对象 ArrayList<Account> accounts = new ArrayList(); // 2.准备系统的首页,登入,开户 showMain(accounts); } public static void showMain(ArrayList<Account> accounts) { System.out.println("=============欢迎进入首页==========="); Scanner sc = new Scanner(System.in); while(true) { System.out.println("请您输入您想做的操作:"); System.out.println("1.登录"); System.out.println("2.开户"); System.out.println("您可以输入命令了:"); int command = sc.nextInt(); switch(command) { case 1: //登入 break; case 2: //开户 register(accounts,sc); break; default: System.out.println("您当前输入的操作命令不被支持!"); } } } /** * 用户开户功能 * @param accounts 账户的集合对象 */ private static void register(ArrayList<Account> accounts, Scanner sc) { System.out.println("=========用户开户功能=========="); //键盘录入 姓名 密码 确认密码 System.out.println("请您输入开户名称:"); String name = sc.next(); String password = ""; while (true) { System.out.println("请您输入开户密码:"); password = sc.next(); System.out.println("请您输入确认密码:"); String okPassword = sc.next(); // 判断两次输入的密码是否一致 if (okPassword.equals(password)) //字符串比较用equals { break; } else { System.out.println("两次密码必须一致~~~"); } } System.out.println("请您输入当次限额:"); double quotaMoney = sc.nextDouble(); // 3.生成账户的卡号,卡号是8位,而且不能与其他账户卡号重复。 String cardId = creatCardId(accounts); // 4.创建一个账户对象封装账户的信息 // public Account(String cardId, String userWord, String passWord, double money, double quotaMoney) Account account = new Account(cardId,name,password,quotaMoney); // 5.把账户对象添加到集合中去 accounts.add(account); System.out.println("恭喜您,您开户成功,您的卡号是:" + account.getCardId() + ",请您妥善保管"); } public static String creatCardId(ArrayList<Account> accouts) { while (true) { // 生成8位随机的数字代表卡号 String cardId = ""; Random r = new Random(); for (int i = 0; i < 8; i++) { cardId += r.nextInt(10); } // 判断卡号是否重复了 Account acc = getAccountBycardId(cardId,accouts); if (acc == null) { // 说明当前卡号没有重复 return cardId; } } } public static Account getAccountBycardId(String cardId, ArrayList<Account> accounts) { // 根据卡号查询对象 for (int i = 0; i < accounts.size(); i++) { Account acc = accounts.get(i); if (acc.getCardId().equals(cardId)) { return acc; } } return null;//查无此账户,说明卡号没有重复了! } }
總結
開戶功能的實作需要哪幾步操作,需要注意什麼問題?
開戶功能應該獨立定義成方法,並傳入目前集合物件給該方法。
錄入開戶資訊(姓名,密碼)
#卡號要自動產生且唯一
- 2.????用戶登錄,操作頁展示,查詢帳戶,退出帳戶
- ##分析
- 定義方法:
-
public static void login(ArrayList<Account>accounts){...}
#讓使用者鍵盤錄入卡號,根據卡號查詢帳戶物件。
如果沒有找到了帳戶對象,說明卡號不存在,繼續輸入卡號
如果找到了帳戶對象,說明卡號存在,繼續輸入密碼
package com.wangxinhua; import java.lang.reflect.Array; import java.util.ArrayList; import java.util.Random; import java.util.Scanner; public class ATMSystem { public static void main(String[] args) { // 1.准备系统需要的容器对象,用户存储账户对象 ArrayList<Account> accounts = new ArrayList(); // 2.准备系统的首页,登入,开户 showMain(accounts); } public static void showMain(ArrayList<Account> accounts) { System.out.println("=============欢迎进入首页==========="); Scanner sc = new Scanner(System.in); while(true) { System.out.println("请您输入您想做的操作:"); System.out.println("1.登录"); System.out.println("2.开户"); System.out.println("您可以输入命令了:"); int command = sc.nextInt(); switch(command) { case 1: //登录 login(accounts,sc); break; case 2: //开户 register(accounts,sc); break; default: System.out.println("您当前输入的操作命令不被支持!"); } } } /** * 完成用户登录 * @param accounts */ private static void login(ArrayList<Account> accounts,Scanner sc) { //必须系统中存在账户才可以登录 if (accounts.size() == 0) { //没有任何账户 System.out.println("当前系统中无任何账户,您需要先注册!"); return;//直接结束方法的执行! } //2.让用户键盘录入卡号,根据卡号查询账户对象 while (true) { System.out.println("请您输入登录的卡号:"); String cardId = sc.next(); //根据卡号查询账户对象 Account acc = getAccountBycardId(cardId,accounts); // 3.判断账户对象是否存在,存在说明卡号没问题 if (acc != null) { while (true) { // 4.让用户继续输入密码 System.out.println("请您输入登录的密码:"); String password = sc.next(); // 5.判断密码是否正确 if (acc.getPassWord().equals(password)) { //密码正确,登入成功 //展示系统登录后的操作界面 System.out.println("恭喜您," + acc.getUserWord() +",成功登入系统,您的卡号是:" + acc.getCardId()); // } else { System.out.println("您的密码有误,请确认!"); } } } else { System.out.println("对不起,不存在该卡号的账户!"); } } } /** * 用户开户功能 * @param accounts 账户的集合对象 */ private static void register(ArrayList<Account> accounts, Scanner sc) { System.out.println("=========用户开户功能=========="); //键盘录入 姓名 密码 确认密码 System.out.println("请您输入开户名称:"); String name = sc.next(); String password = ""; while (true) { System.out.println("请您输入开户密码:"); password = sc.next(); System.out.println("请您输入确认密码:"); String okPassword = sc.next(); // 判断两次输入的密码是否一致 if (okPassword.equals(password)) //字符串比较用equals { break; } else { System.out.println("两次密码必须一致~~~"); } } System.out.println("请您输入当次限额:"); double quotaMoney = sc.nextDouble(); // 3.生成账户的卡号,卡号是8位,而且不能与其他账户卡号重复。 String cardId = creatCardId(accounts); // 4.创建一个账户对象封装账户的信息 // public Account(String cardId, String userWord, String passWord, double money, double quotaMoney) Account account = new Account(cardId,name,password,quotaMoney); // 5.把账户对象添加到集合中去 accounts.add(account); System.out.println("恭喜您,您开户成功,您的卡号是:" + account.getCardId() + ",请您妥善保管"); } public static String creatCardId(ArrayList<Account> accouts) { while (true) { // 生成8位随机的数字代表卡号 String cardId = ""; Random r = new Random(); for (int i = 0; i < 8; i++) { cardId += r.nextInt(10); } // 判断卡号是否重复了 Account acc = getAccountBycardId(cardId,accouts); if (acc == null) { // 说明当前卡号没有重复 return cardId; } } } public static Account getAccountBycardId(String cardId, ArrayList<Account> accounts) { // 根据卡号查询对象 for (int i = 0; i < accounts.size(); i++) { Account acc = accounts.get(i); if (acc.getCardId().equals(cardId)) { return acc; } } return null;//查无此账户,说明卡号没有重复了! } }
登入功能如何實現的?
根據卡號去集合中查詢對應的帳戶對象
#如果找到了帳戶對象,表示卡號存在,繼續輸入密碼
- 如果密碼正確,則登入成功
- 使用者操作頁設計,查詢帳戶,退出帳戶功能
使用者操作頁,查詢帳戶,退出帳戶功能分析
用戶登入成功後,需要進入用戶操作頁、
查詢就是直接展示目前登入成功的帳戶物件的資訊
- #
package com.wangxinhua; import java.lang.reflect.Array; import java.util.ArrayList; import java.util.Random; import java.util.Scanner; public class ATMSystem { public static void main(String[] args) { // 1.准备系统需要的容器对象,用户存储账户对象 ArrayList<Account> accounts = new ArrayList(); // 2.准备系统的首页,登入,开户 showMain(accounts); } public static void showMain(ArrayList<Account> accounts) //showMain 开户首页的意思 // ArrayList<Account> accounts 使用方法定义功能传入容器中 accounts是传参 { System.out.println("=============欢迎进入首页==========="); Scanner sc = new Scanner(System.in); while(true) { System.out.println("请您输入您想做的操作:"); System.out.println("1.登录"); System.out.println("2.开户"); System.out.println("您可以输入命令了:"); int command = sc.nextInt(); switch(command) { case 1: //登录 login(accounts,sc); break; case 2: //开户 register(accounts,sc); break; default: System.out.println("您当前输入的操作命令不被支持!"); } } } /** * 完成用户登录 * @param accounts */ private static void login(ArrayList<Account> accounts,Scanner sc) { //必须系统中存在账户才可以登录 if (accounts.size() == 0) { //没有任何账户 System.out.println("当前系统中无任何账户,您需要先注册!"); return;//直接结束方法的执行! } //2.让用户键盘录入卡号,根据卡号查询账户对象 while (true) { System.out.println("请您输入登录的卡号:"); String cardId = sc.next(); //根据卡号查询账户对象 Account acc = getAccountBycardId(cardId,accounts); // 3.判断账户对象是否存在,存在说明卡号没问题 if (acc != null) { while (true) { // 4.让用户继续输入密码 System.out.println("请您输入登录的密码:"); String password = sc.next(); // 5.判断密码是否正确 if (acc.getPassWord().equals(password)) { //密码正确,登入成功 //展示系统登录后的操作界面 System.out.println("恭喜您," + acc.getUserWord() +",成功登入系统,您的卡号是:" + acc.getCardId()); //展示操作页面 showUserCommand(sc,acc); return;//继续结束登录方法 } else { System.out.println("您的密码有误,请确认!"); } } } else { System.out.println("对不起,不存在该卡号的账户!"); } } } private static void showUserCommand(Scanner sc,Account acc) { System.out.println("=========用户操作页面========"); System.out.println("1.查询账户"); System.out.println("2.存款"); System.out.println("3.取款"); System.out.println("4.转账"); System.out.println("5.修改密码"); System.out.println("6.退出"); System.out.println("7.注销账户"); while (true) { System.out.println("请您输入操作命令:"); int command = sc.nextInt(); switch (command) { case 1: //查询账户 showAccount(acc); break; case 2: //存款 break; case 3: //取款 break; case 4: //转账 break; case 5: //修改密码 break; case 6: //退出 System.out.println("欢迎下次光临!!"); return; //结束当前showUserCommand(Scanner sc,Account acc)的方法 case 7: //注销账户 break; default: System.out.println("您输入有误!"); } } } private static void showAccount(Account acc) { System.out.println("===========当前账户详情========="); System.out.println("卡号" + acc.getCardId()); System.out.println("姓名" + acc.getUserWord()); System.out.println("余额" + acc.getMoney()); System.out.println("当次限额:" + acc.getQuotaMoney()); } /** * 用户开户功能 * @param accounts 账户的集合对象 */ private static void register(ArrayList<Account> accounts, Scanner sc) { System.out.println("=========用户开户功能=========="); //键盘录入 姓名 密码 确认密码 System.out.println("请您输入开户名称:"); String name = sc.next(); String password = ""; while (true) { System.out.println("请您输入开户密码:"); password = sc.next(); System.out.println("请您输入确认密码:"); String okPassword = sc.next(); // 判断两次输入的密码是否一致 if (okPassword.equals(password)) //字符串比较用equals { break; } else { System.out.println("两次密码必须一致~~~"); } } System.out.println("请您输入当次限额:"); double quotaMoney = sc.nextDouble(); // 3.生成账户的卡号,卡号是8位,而且不能与其他账户卡号重复。 String cardId = creatCardId(accounts); // 4.创建一个账户对象封装账户的信息 // public Account(String cardId, String userWord, String passWord, double money, double quotaMoney) Account account = new Account(cardId,name,password,quotaMoney); // 5.把账户对象添加到集合中去 accounts.add(account); System.out.println("恭喜您,您开户成功,您的卡号是:" + account.getCardId() + ",请您妥善保管"); } public static String creatCardId(ArrayList<Account> accouts) { while (true) { // 生成8位随机的数字代表卡号 String cardId = ""; Random r = new Random(); for (int i = 0; i < 8; i++) { cardId += r.nextInt(10); } // 判断卡号是否重复了 Account acc = getAccountBycardId(cardId,accouts); if (acc == null) { // 说明当前卡号没有重复 return cardId; } } } public static Account getAccountBycardId(String cardId, ArrayList<Account> accounts) { // 根据卡号查询对象 for (int i = 0; i < accounts.size(); i++) { Account acc = accounts.get(i); if (acc.getCardId().equals(cardId)) { return acc; } } return null;//查无此账户,说明卡号没有重复了! } }
使用者操作頁設計,查詢帳戶,退出帳戶功能注意事項
我們應該注意接入登入介面後應該注意使用者操作頁面有哪些
#設定好操作介面後需要接取退出介面
3.????用戶存款與提款
用戶存款#存款分析
存款就是拿到目前帳戶物件
#然後讓使用者輸入存款金額
呼叫帳號物件的setMoney方法將戰虎餘額修改成存錢後的餘額
package com.wangxinhua; import java.lang.reflect.Array; import java.util.ArrayList; import java.util.Random; import java.util.Scanner; public class ATMSystem { public static void main(String[] args) { // 1.准备系统需要的容器对象,用户存储账户对象 ArrayList<Account> accounts = new ArrayList(); // 2.准备系统的首页,登入,开户 showMain(accounts); } public static void showMain(ArrayList<Account> accounts) //showMain 开户首页的意思 // ArrayList<Account> accounts 使用方法定义功能传入容器中 accounts是传参 { System.out.println("=============欢迎进入首页==========="); Scanner sc = new Scanner(System.in); while(true) { System.out.println("请您输入您想做的操作:"); System.out.println("1.登录"); System.out.println("2.开户"); System.out.println("您可以输入命令了:"); int command = sc.nextInt(); switch(command) { case 1: //登录 login(accounts,sc); break; case 2: //开户 register(accounts,sc); break; default: System.out.println("您当前输入的操作命令不被支持!"); } } } /** * 完成用户登录 * @param accounts */ private static void login(ArrayList<Account> accounts,Scanner sc) { //必须系统中存在账户才可以登录 if (accounts.size() == 0) { //没有任何账户 System.out.println("当前系统中无任何账户,您需要先注册!"); return;//直接结束方法的执行! } //2.让用户键盘录入卡号,根据卡号查询账户对象 while (true) { System.out.println("请您输入登录的卡号:"); String cardId = sc.next(); //根据卡号查询账户对象 Account acc = getAccountBycardId(cardId,accounts); // 3.判断账户对象是否存在,存在说明卡号没问题 if (acc != null) { while (true) { // 4.让用户继续输入密码 System.out.println("请您输入登录的密码:"); String password = sc.next(); // 5.判断密码是否正确 if (acc.getPassWord().equals(password)) { //密码正确,登入成功 //展示系统登录后的操作界面 System.out.println("恭喜您," + acc.getUserWord() +",成功登入系统,您的卡号是:" + acc.getCardId()); //展示操作页面 showUserCommand(sc,acc); return;//继续结束登录方法 } else { System.out.println("您的密码有误,请确认!"); } } } else { System.out.println("对不起,不存在该卡号的账户!"); } } } private static void showUserCommand(Scanner sc,Account acc) { while (true) { System.out.println("=========用户操作页面========"); System.out.println("1.查询账户"); System.out.println("2.存款"); System.out.println("3.取款"); System.out.println("4.转账"); System.out.println("5.修改密码"); System.out.println("6.退出"); System.out.println("7.注销账户"); System.out.println("请您输入操作命令:"); int command = sc.nextInt(); switch (command) { case 1: //查询账户 showAccount(acc); break; case 2: //存款 depositMoney(acc,sc); break; case 3: //取款 break; case 4: //转账 break; case 5: //修改密码 break; case 6: //退出 System.out.println("欢迎下次光临!!"); return; //结束当前showUserCommand(Scanner sc,Account acc)的方法 case 7: //注销账户 break; default: System.out.println("您输入有误!"); } } } /** * 专门存钱的 * @param acc */ private static void depositMoney(Account acc,Scanner sc) { System.out.println("===========存钱操作========="); System.out.println("请您输入存款的金额:"); double money = sc.nextDouble(); //直接把金额修改到账户对象的money属性中去 acc.setMoney(acc.getMoney() + money); System.out.println("存款完成!"); showAccount(acc); } private static void showAccount(Account acc) { System.out.println("===========当前账户详情========="); System.out.println("卡号" + acc.getCardId()); System.out.println("姓名" + acc.getUserWord()); System.out.println("余额" + acc.getMoney()); System.out.println("当次限额:" + acc.getQuotaMoney()); } /** * 用户开户功能 * @param accounts 账户的集合对象 */ private static void register(ArrayList<Account> accounts, Scanner sc) { System.out.println("=========用户开户功能=========="); //键盘录入 姓名 密码 确认密码 System.out.println("请您输入开户名称:"); String name = sc.next(); String password = ""; while (true) { System.out.println("请您输入开户密码:"); password = sc.next(); System.out.println("请您输入确认密码:"); String okPassword = sc.next(); // 判断两次输入的密码是否一致 if (okPassword.equals(password)) //字符串比较用equals { break; } else { System.out.println("两次密码必须一致~~~"); } } System.out.println("请您输入当次限额:"); double quotaMoney = sc.nextDouble(); // 3.生成账户的卡号,卡号是8位,而且不能与其他账户卡号重复。 String cardId = creatCardId(accounts); // 4.创建一个账户对象封装账户的信息 // public Account(String cardId, String userWord, String passWord, double money, double quotaMoney) Account account = new Account(cardId,name,password,quotaMoney); // 5.把账户对象添加到集合中去 accounts.add(account); System.out.println("恭喜您,您开户成功,您的卡号是:" + account.getCardId() + ",请您妥善保管"); } public static String creatCardId(ArrayList<Account> accouts) { while (true) { // 生成8位随机的数字代表卡号 String cardId = ""; Random r = new Random(); for (int i = 0; i < 8; i++) { cardId += r.nextInt(10); } // 判断卡号是否重复了 Account acc = getAccountBycardId(cardId,accouts); if (acc == null) { // 说明当前卡号没有重复 return cardId; } } } public static Account getAccountBycardId(String cardId, ArrayList<Account> accounts) { // 根据卡号查询对象 for (int i = 0; i < accounts.size(); i++) { Account acc = accounts.get(i); if (acc.getCardId().equals(cardId)) { return acc; } } return null; //查无此账户,说明卡号没有重复了! } }
#存款分析
存款就是拿到目前帳戶對象
然後讓使用者輸入存款的金額
#呼叫帳戶物件的setMoney方法將帳戶餘額修改成存錢後的餘額
#########存錢後需要查詢一下帳戶訊息,確認是否存錢成功了! ############提款分析###取款需要先判断账户是否有钱
有钱则拿到自己账户对象
然后让用户输入取款金额
判断取款金额是否超过了当次限额,以及金额是否足够
满足要求则调用账户对象的setMoney方法完成金额的修改
package com.wangxinhua; import java.lang.reflect.Array; import java.util.ArrayList; import java.util.Random; import java.util.Scanner; public class ATMSystem { public static void main(String[] args) { // 1.准备系统需要的容器对象,用户存储账户对象 ArrayList<Account> accounts = new ArrayList(); // 2.准备系统的首页,登入,开户 showMain(accounts); } public static void showMain(ArrayList<Account> accounts) //showMain 开户首页的意思 // ArrayList<Account> accounts 使用方法定义功能传入容器中 accounts是传参 { System.out.println("=============欢迎进入首页==========="); Scanner sc = new Scanner(System.in); while(true) { System.out.println("请您输入您想做的操作:"); System.out.println("1.登录"); System.out.println("2.开户"); System.out.println("您可以输入命令了:"); int command = sc.nextInt(); switch(command) { case 1: //登录 login(accounts,sc); break; case 2: //开户 register(accounts,sc); break; default: System.out.println("您当前输入的操作命令不被支持!"); } } } /** * 完成用户登录 * @param accounts */ private static void login(ArrayList<Account> accounts,Scanner sc) { //必须系统中存在账户才可以登录 if (accounts.size() == 0) { //没有任何账户 System.out.println("当前系统中无任何账户,您需要先注册!"); return;//直接结束方法的执行! } //2.让用户键盘录入卡号,根据卡号查询账户对象 while (true) { System.out.println("请您输入登录的卡号:"); String cardId = sc.next(); //根据卡号查询账户对象 Account acc = getAccountBycardId(cardId,accounts); // 3.判断账户对象是否存在,存在说明卡号没问题 if (acc != null) { while (true) { // 4.让用户继续输入密码 System.out.println("请您输入登录的密码:"); String password = sc.next(); // 5.判断密码是否正确 if (acc.getPassWord().equals(password)) { //密码正确,登入成功 //展示系统登录后的操作界面 System.out.println("恭喜您," + acc.getUserWord() +",成功登入系统,您的卡号是:" + acc.getCardId()); //展示操作页面 showUserCommand(sc,acc); return;//继续结束登录方法 } else { System.out.println("您的密码有误,请确认!"); } } } else { System.out.println("对不起,不存在该卡号的账户!"); } } } private static void showUserCommand(Scanner sc,Account acc) { while (true) { System.out.println("=========用户操作页面========"); System.out.println("1.查询账户"); System.out.println("2.存款"); System.out.println("3.取款"); System.out.println("4.转账"); System.out.println("5.修改密码"); System.out.println("6.退出"); System.out.println("7.注销账户"); System.out.println("请您输入操作命令:"); int command = sc.nextInt(); switch (command) { case 1: //查询账户 showAccount(acc); break; case 2: //存款 depositMoney(acc,sc); break; case 3: //取款 drawMoney(acc,sc); break; case 4: //转账 break; case 5: //修改密码 break; case 6: //退出 System.out.println("欢迎下次光临!!"); return; //结束当前showUserCommand(Scanner sc,Account acc)的方法 case 7: //注销账户 break; default: System.out.println("您输入有误!"); } } } /** * 取款操作 * @param acc * @param sc */ private static void drawMoney(Account acc, Scanner sc) { System.out.println("==========取款操作========="); //1.判断它的账户是否足够100元 if (acc.getMoney() >= 100) { while (true) { System.out.println("请您输入取款的金额:"); double money = sc.nextDouble(); //2.判断整个金额有没有超过当次限额 if (money > acc.getQuotaMoney()) { System.out.println("您当次取款金额超过每次限额,不要取那么多,每次最多可以取:" + acc.getQuotaMoney()); } else { //3.判断当前余额是否足够你取钱 if (acc.getMoney() >= money) { //够了,可以取钱了 acc.setMoney(acc.getMoney() - money); System.out.println("恭喜您,取钱" + money + "成功了!当前账户还剩余:" + acc.getMoney()); return;//取钱后干掉了取钱方法 } else { System.out.println("余额不足啊!!"); } } } } else { System.out.println("您自己的金额没有超过100元,该努力工作了~~~"); } } /** * 专门存钱的 * @param acc */ private static void depositMoney(Account acc,Scanner sc) { System.out.println("===========存钱操作========="); System.out.println("请您输入存款的金额:"); double money = sc.nextDouble(); //直接把金额修改到账户对象的money属性中去 acc.setMoney(acc.getMoney() + money); System.out.println("存款完成!"); showAccount(acc); } private static void showAccount(Account acc) { System.out.println("===========当前账户详情========="); System.out.println("卡号" + acc.getCardId()); System.out.println("姓名" + acc.getUserWord()); System.out.println("余额" + acc.getMoney()); System.out.println("当次限额:" + acc.getQuotaMoney()); } /** * 用户开户功能 * @param accounts 账户的集合对象 */ private static void register(ArrayList<Account> accounts, Scanner sc) { System.out.println("=========用户开户功能=========="); //键盘录入 姓名 密码 确认密码 System.out.println("请您输入开户名称:"); String name = sc.next(); String password = ""; while (true) { System.out.println("请您输入开户密码:"); password = sc.next(); System.out.println("请您输入确认密码:"); String okPassword = sc.next(); // 判断两次输入的密码是否一致 if (okPassword.equals(password)) //字符串比较用equals { break; } else { System.out.println("两次密码必须一致~~~"); } } System.out.println("请您输入当次限额:"); double quotaMoney = sc.nextDouble(); // 3.生成账户的卡号,卡号是8位,而且不能与其他账户卡号重复。 String cardId = creatCardId(accounts); // 4.创建一个账户对象封装账户的信息 // public Account(String cardId, String userWord, String passWord, double money, double quotaMoney) Account account = new Account(cardId,name,password,quotaMoney); // 5.把账户对象添加到集合中去 accounts.add(account); System.out.println("恭喜您,您开户成功,您的卡号是:" + account.getCardId() + ",请您妥善保管"); } public static String creatCardId(ArrayList<Account> accouts) { while (true) { // 生成8位随机的数字代表卡号 String cardId = ""; Random r = new Random(); for (int i = 0; i < 8; i++) { cardId += r.nextInt(10); } // 判断卡号是否重复了 Account acc = getAccountBycardId(cardId,accouts); if (acc == null) { // 说明当前卡号没有重复 return cardId; } } } public static Account getAccountBycardId(String cardId, ArrayList<Account> accounts) { // 根据卡号查询对象 for (int i = 0; i < accounts.size(); i++) { Account acc = accounts.get(i); if (acc.getCardId().equals(cardId)) { return acc; } } return null; //查无此账户,说明卡号没有重复了! } }
总结温习
取款需要先判断账户是否有钱
有钱则拿到自己账户对象
然后让用户输入取款金额
判断取款金额是否超过了当次限额,以及金额是否足够
满足要求则调用账户对象的setMoney方法完成金额的修改
4.????用户转账,修改密码,销户
用户转账功能
分析
转账功能需要判断系统中是否有2个账户对象及以上
同时还要判断总结账户是否有钱
接下来需要输入对方卡号,判断对方账户是否存在
对方账户存在还需要认证对方户主的姓氏
满足要求则可以把自己账户对象的金额修改到对方账户对象中去
package com.wangxinhua; import java.lang.reflect.Array; import java.util.ArrayList; import java.util.Random; import java.util.Scanner; public class ATMSystem { public static void main(String[] args) { // 1.准备系统需要的容器对象,用户存储账户对象 ArrayList<Account> accounts = new ArrayList(); // 2.准备系统的首页,登入,开户 showMain(accounts); } public static void showMain(ArrayList<Account> accounts) //showMain 开户首页的意思 // ArrayList<Account> accounts 使用方法定义功能传入容器中 accounts是传参 { System.out.println("=============欢迎进入首页==========="); Scanner sc = new Scanner(System.in); while(true) { System.out.println("请您输入您想做的操作:"); System.out.println("1.登录"); System.out.println("2.开户"); System.out.println("您可以输入命令了:"); int command = sc.nextInt(); switch(command) { case 1: //登录 login(accounts,sc); break; case 2: //开户 register(accounts,sc); break; default: System.out.println("您当前输入的操作命令不被支持!"); } } } /** * 完成用户登录 * @param accounts */ private static void login(ArrayList<Account> accounts,Scanner sc) { //必须系统中存在账户才可以登录 if (accounts.size() == 0) { //没有任何账户 System.out.println("当前系统中无任何账户,您需要先注册!"); return;//直接结束方法的执行! } //2.让用户键盘录入卡号,根据卡号查询账户对象 while (true) { System.out.println("请您输入登录的卡号:"); String cardId = sc.next(); //根据卡号查询账户对象 Account acc = getAccountBycardId(cardId,accounts); // 3.判断账户对象是否存在,存在说明卡号没问题 if (acc != null) { while (true) { // 4.让用户继续输入密码 System.out.println("请您输入登录的密码:"); String password = sc.next(); // 5.判断密码是否正确 if (acc.getPassWord().equals(password)) { //密码正确,登入成功 //展示系统登录后的操作界面 System.out.println("恭喜您," + acc.getUserWord() +",成功登入系统,您的卡号是:" + acc.getCardId()); //展示操作页面 showUserCommand(sc,acc,accounts); return;//继续结束登录方法 } else { System.out.println("您的密码有误,请确认!"); } } } else { System.out.println("对不起,不存在该卡号的账户!"); } } } private static void showUserCommand(Scanner sc,Account acc,ArrayList<Account> accounts) { while (true) { System.out.println("=========用户操作页面========"); System.out.println("1.查询账户"); System.out.println("2.存款"); System.out.println("3.取款"); System.out.println("4.转账"); System.out.println("5.修改密码"); System.out.println("6.退出"); System.out.println("7.注销账户"); System.out.println("请您输入操作命令:"); int command = sc.nextInt(); switch (command) { case 1: //查询账户 showAccount(acc); break; case 2: //存款 depositMoney(acc,sc); break; case 3: //取款 drawMoney(acc,sc); break; case 4: //转账 transferMoney(accounts,acc ,sc); break; case 5: //修改密码 break; case 6: //退出 System.out.println("欢迎下次光临!!"); return; //结束当前showUserCommand(Scanner sc,Account acc)的方法 case 7: //注销账户 break; default: System.out.println("您输入有误!"); } } } /** * 转账功能 * @param accounts * @param acc * @param sc */ private static void transferMoney(ArrayList<Account> accounts, Account acc, Scanner sc) { //1.判断系统中是否有2个账户及以上 if (accounts.size() < 2) { System.out.println("对不起,系统中无其他账户,您不可以转账!!"); return; } //2.判断自己的账户对象中是否有钱 if (acc.getMoney() == 0) { System.out.println("对不起,您自己都快吃土了,就别装逼了!!"); return; } //3.开始转账逻辑 while (true) { System.out.println("请您输入对方账户的卡号:"); String cardId = sc.next(); Account account = getAccountBycardId(cardId,accounts); //判断整个账户对象是否存在,存在说明对方卡号输入正确 if (account != null) { //判断这个账户对象是否是当前自己登录的账户 if (account.getCardId().equals(acc.getCardId())) { //也就是这里企图想给自己转账 System.out.println("您不能给自己转账!"); } else { //确认对方的姓氏 String name = "*" + account.getUserWord().substring(1); System.out.println("请您确认【" + name + "】的姓氏:"); String preName = sc.next(); //判断 if (account.getUserWord().startsWith(preName)) { //真正的转账才刚刚开始 System.out.println("请您输入转账的金额:"); double money = sc.nextDouble(); //判断这个金额是否超过了自己的金额 if (money > acc.getMoney()) { System.out.println("对不起,您要转账的金额太多,您最多可以转账:" + acc.getMoney()); } else { //开始了 acc.setMoney(acc.getMoney() - money); account.setMoney(account.getMoney() + money); System.out.println("恭喜您,转账成功了,已经为" + account.getUserWord() + "转账了:" + money); showAccount(acc); return; } } else { System.out.println("对不起,您认证的信息有误~~~"); } } } else { System.out.println("对不起,您输入的转账卡号有问题!!"); } } } /** * 取款操作 * @param acc * @param sc */ private static void drawMoney(Account acc, Scanner sc) { System.out.println("==========取款操作========="); //1.判断它的账户是否足够100元 if (acc.getMoney() >= 100) { while (true) { System.out.println("请您输入取款的金额:"); double money = sc.nextDouble(); //2.判断整个金额有没有超过当次限额 if (money > acc.getQuotaMoney()) { System.out.println("您当次取款金额超过每次限额,不要取那么多,每次最多可以取:" + acc.getQuotaMoney()); } else { //3.判断当前余额是否足够你取钱 if (acc.getMoney() >= money) { //够了,可以取钱了 acc.setMoney(acc.getMoney() - money); System.out.println("恭喜您,取钱" + money + "成功了!当前账户还剩余:" + acc.getMoney()); return;//取钱后干掉了取钱方法 } else { System.out.println("余额不足啊!!"); } } } } else { System.out.println("您自己的金额没有超过100元,该努力工作了~~~"); } } /** * 专门存钱的 * @param acc */ private static void depositMoney(Account acc,Scanner sc) { System.out.println("===========存钱操作========="); System.out.println("请您输入存款的金额:"); double money = sc.nextDouble(); //直接把金额修改到账户对象的money属性中去 acc.setMoney(acc.getMoney() + money); System.out.println("存款完成!"); showAccount(acc); } private static void showAccount(Account acc) { System.out.println("===========当前账户详情========="); System.out.println("卡号" + acc.getCardId()); System.out.println("姓名" + acc.getUserWord()); System.out.println("余额" + acc.getMoney()); System.out.println("当次限额:" + acc.getQuotaMoney()); } /** * 用户开户功能 * @param accounts 账户的集合对象 */ private static void register(ArrayList<Account> accounts, Scanner sc) { System.out.println("=========用户开户功能=========="); //键盘录入 姓名 密码 确认密码 System.out.println("请您输入开户名称:"); String name = sc.next(); String password = ""; while (true) { System.out.println("请您输入开户密码:"); password = sc.next(); System.out.println("请您输入确认密码:"); String okPassword = sc.next(); // 判断两次输入的密码是否一致 if (okPassword.equals(password)) //字符串比较用equals { break; } else { System.out.println("两次密码必须一致~~~"); } } System.out.println("请您输入当次限额:"); double quotaMoney = sc.nextDouble(); // 3.生成账户的卡号,卡号是8位,而且不能与其他账户卡号重复。 String cardId = creatCardId(accounts); // 4.创建一个账户对象封装账户的信息 // public Account(String cardId, String userWord, String passWord, double money, double quotaMoney) Account account = new Account(cardId,name,password,quotaMoney); // 5.把账户对象添加到集合中去 accounts.add(account); System.out.println("恭喜您,您开户成功,您的卡号是:" + account.getCardId() + ",请您妥善保管"); } public static String creatCardId(ArrayList<Account> accouts) { while (true) { // 生成8位随机的数字代表卡号 String cardId = ""; Random r = new Random(); for (int i = 0; i < 8; i++) { cardId += r.nextInt(10); } // 判断卡号是否重复了 Account acc = getAccountBycardId(cardId,accouts); if (acc == null) { // 说明当前卡号没有重复 return cardId; } } } public static Account getAccountBycardId(String cardId, ArrayList<Account> accounts) { // 根据卡号查询对象 for (int i = 0; i < accounts.size(); i++) { Account acc = accounts.get(i); if (acc.getCardId().equals(cardId)) { return acc; } } return null; //查无此账户,说明卡号没有重复了! } }
总结温习
转账功能需要判断系统中是否有2个账户对象及以上
同时还要判断总结账户是否有钱
接下来需要输入对方卡号,判断对方账户是否存在
对方账户存在还需要认证对方户主的姓氏
满足要求则可以把自己账户对象的金额修改到对方账户对象中去
修改密码与销户
分析
修改密码就是把当前对现象的密码属性使用set方法进行更新
销户是从集合对象中删除当前对象,并回到首页
这里为止所有的ATM系统的操作代码就已经完成
package com.wangxinhua; import java.lang.reflect.Array; import java.util.ArrayList; import java.util.Random; import java.util.Scanner; public class ATMSystem { public static void main(String[] args) { // 1.准备系统需要的容器对象,用户存储账户对象 ArrayList<Account> accounts = new ArrayList(); // 2.准备系统的首页,登入,开户 showMain(accounts); } public static void showMain(ArrayList<Account> accounts) //showMain 开户首页的意思 // ArrayList<Account> accounts 使用方法定义功能传入容器中 accounts是传参 { System.out.println("=============欢迎进入首页==========="); Scanner sc = new Scanner(System.in); while(true) { System.out.println("请您输入您想做的操作:"); System.out.println("1.登录"); System.out.println("2.开户"); System.out.println("您可以输入命令了:"); int command = sc.nextInt(); switch(command) { case 1: //登录 login(accounts,sc); break; case 2: //开户 register(accounts,sc); break; default: System.out.println("您当前输入的操作命令不被支持!"); } } } /** * 完成用户登录 * @param accounts */ private static void login(ArrayList<Account> accounts,Scanner sc) { //必须系统中存在账户才可以登录 if (accounts.size() == 0) { //没有任何账户 System.out.println("当前系统中无任何账户,您需要先注册!"); return;//直接结束方法的执行! } //2.让用户键盘录入卡号,根据卡号查询账户对象 while (true) { System.out.println("请您输入登录的卡号:"); String cardId = sc.next(); //根据卡号查询账户对象 Account acc = getAccountBycardId(cardId,accounts); // 3.判断账户对象是否存在,存在说明卡号没问题 if (acc != null) { while (true) { // 4.让用户继续输入密码 System.out.println("请您输入登录的密码:"); String password = sc.next(); // 5.判断密码是否正确 if (acc.getPassWord().equals(password)) { //密码正确,登入成功 //展示系统登录后的操作界面 System.out.println("恭喜您," + acc.getUserWord() +",成功登入系统,您的卡号是:" + acc.getCardId()); //展示操作页面 showUserCommand(sc,acc,accounts); return;//继续结束登录方法 } else { System.out.println("您的密码有误,请确认!"); } } } else { System.out.println("对不起,不存在该卡号的账户!"); } } } private static void showUserCommand(Scanner sc,Account acc,ArrayList<Account> accounts) { while (true) { System.out.println("=========用户操作页面========"); System.out.println("1.查询账户"); System.out.println("2.存款"); System.out.println("3.取款"); System.out.println("4.转账"); System.out.println("5.修改密码"); System.out.println("6.退出"); System.out.println("7.注销账户"); System.out.println("请您输入操作命令:"); int command = sc.nextInt(); switch (command) { case 1: //查询账户 showAccount(acc); break; case 2: //存款 depositMoney(acc,sc); break; case 3: //取款 drawMoney(acc,sc); break; case 4: //转账 transferMoney(accounts,acc ,sc); break; case 5: //修改密码 updataPassWord(acc,sc); return;//结束当前………… case 6: //退出 System.out.println("欢迎下次光临!!"); return; //结束当前showUserCommand(Scanner sc,Account acc)的方法 case 7: //注销账户 //从当前集合中抹掉当前账户对象即可 accounts.remove(acc); System.out.println("销户成功了!!"); return; default: System.out.println("您输入有误!"); } } } /** * 修改密码 * @param acc */ private static void updataPassWord(Account acc,Scanner sc) { System.out.println("===========修改密码========="); while (true) { System.out.println("请您输入正确的密码:"); String okPassWord = sc.next(); //判断密码是否正确 if (acc.getPassWord().equals(okPassWord)) { //可以输入新密码 System.out.println("请您输入新的密码:"); String newPassWord = sc.next(); System.out.println("请您输入确认密码:"); String okNewPassWord = sc.next(); if (newPassWord.equals(okNewPassWord)) { //修改账户对象的密码为新密码 acc.setPassWord(newPassWord); return;//直接结束方法! } else { System.out.println("您两次输入的密码不一致~~"); } } else { System.out.println("当前输入的密码不正确~~~"); } } } /** * 转账功能 * @param accounts * @param acc * @param sc */ private static void transferMoney(ArrayList<Account> accounts, Account acc, Scanner sc) { //1.判断系统中是否有2个账户及以上 if (accounts.size() < 2) { System.out.println("对不起,系统中无其他账户,您不可以转账!!"); return; } //2.判断自己的账户对象中是否有钱 if (acc.getMoney() == 0) { System.out.println("对不起,您自己都快吃土了,就别装逼了!!"); return; } //3.开始转账逻辑 while (true) { System.out.println("请您输入对方账户的卡号:"); String cardId = sc.next(); Account account = getAccountBycardId(cardId,accounts); //判断整个账户对象是否存在,存在说明对方卡号输入正确 if (account != null) { //判断这个账户对象是否是当前自己登录的账户 if (account.getCardId().equals(acc.getCardId())) { //也就是这里企图想给自己转账 System.out.println("您不能给自己转账!"); } else { //确认对方的姓氏 String name = "*" + account.getUserWord().substring(1); System.out.println("请您确认【" + name + "】的姓氏:"); String preName = sc.next(); //判断 if (account.getUserWord().startsWith(preName)) { //真正的转账才刚刚开始 System.out.println("请您输入转账的金额:"); double money = sc.nextDouble(); //判断这个金额是否超过了自己的金额 if (money > acc.getMoney()) { System.out.println("对不起,您要转账的金额太多,您最多可以转账:" + acc.getMoney()); } else { //开始了 acc.setMoney(acc.getMoney() - money); account.setMoney(account.getMoney() + money); System.out.println("恭喜您,转账成功了,已经为" + account.getUserWord() + "转账了:" + money); showAccount(acc); return; } } else { System.out.println("对不起,您认证的信息有误~~~"); } } } else { System.out.println("对不起,您输入的转账卡号有问题!!"); } } } /** * 取款操作 * @param acc * @param sc */ private static void drawMoney(Account acc, Scanner sc) { System.out.println("==========取款操作========="); //1.判断它的账户是否足够100元 if (acc.getMoney() >= 100) { while (true) { System.out.println("请您输入取款的金额:"); double money = sc.nextDouble(); //2.判断整个金额有没有超过当次限额 if (money > acc.getQuotaMoney()) { System.out.println("您当次取款金额超过每次限额,不要取那么多,每次最多可以取:" + acc.getQuotaMoney()); } else { //3.判断当前余额是否足够你取钱 if (acc.getMoney() >= money) { //够了,可以取钱了 acc.setMoney(acc.getMoney() - money); System.out.println("恭喜您,取钱" + money + "成功了!当前账户还剩余:" + acc.getMoney()); return;//取钱后干掉了取钱方法 } else { System.out.println("余额不足啊!!"); } } } } else { System.out.println("您自己的金额没有超过100元,该努力工作了~~~"); } } /** * 专门存钱的 * @param acc */ private static void depositMoney(Account acc,Scanner sc) { System.out.println("===========存钱操作========="); System.out.println("请您输入存款的金额:"); double money = sc.nextDouble(); //直接把金额修改到账户对象的money属性中去 acc.setMoney(acc.getMoney() + money); System.out.println("存款完成!"); showAccount(acc); } private static void showAccount(Account acc) { System.out.println("===========当前账户详情========="); System.out.println("卡号" + acc.getCardId()); System.out.println("姓名" + acc.getUserWord()); System.out.println("余额" + acc.getMoney()); System.out.println("当次限额:" + acc.getQuotaMoney()); } /** * 用户开户功能 * @param accounts 账户的集合对象 */ private static void register(ArrayList<Account> accounts, Scanner sc) { System.out.println("=========用户开户功能=========="); //键盘录入 姓名 密码 确认密码 System.out.println("请您输入开户名称:"); String name = sc.next(); String password = ""; while (true) { System.out.println("请您输入开户密码:"); password = sc.next(); System.out.println("请您输入确认密码:"); String okPassword = sc.next(); // 判断两次输入的密码是否一致 if (okPassword.equals(password)) //字符串比较用equals { break; } else { System.out.println("两次密码必须一致~~~"); } } System.out.println("请您输入当次限额:"); double quotaMoney = sc.nextDouble(); // 3.生成账户的卡号,卡号是8位,而且不能与其他账户卡号重复。 String cardId = creatCardId(accounts); // 4.创建一个账户对象封装账户的信息 // public Account(String cardId, String userWord, String passWord, double money, double quotaMoney) Account account = new Account(cardId,name,password,quotaMoney); // 5.把账户对象添加到集合中去 accounts.add(account); System.out.println("恭喜您,您开户成功,您的卡号是:" + account.getCardId() + ",请您妥善保管"); } public static String creatCardId(ArrayList<Account> accouts) { while (true) { // 生成8位随机的数字代表卡号 String cardId = ""; Random r = new Random(); for (int i = 0; i < 8; i++) { cardId += r.nextInt(10); } // 判断卡号是否重复了 Account acc = getAccountBycardId(cardId,accouts); if (acc == null) { // 说明当前卡号没有重复 return cardId; } } } public static Account getAccountBycardId(String cardId, ArrayList<Account> accounts) { // 根据卡号查询对象 for (int i = 0; i < accounts.size(); i++) { Account acc = accounts.get(i); if (acc.getCardId().equals(cardId)) { return acc; } } return null; //查无此账户,说明卡号没有重复了! } }
5. ????源代码在这里这里拿
package com.wangxinhua; /** 账户类 */ public class Account { private String CardId;//卡号 private String UserWord;//客户名称 private String PassWord;//密码 private double Money;//余额 private double QuotaMoney;//当次取现限额 //无参函数 public Account() { } // 构造好了有参函数,那么就会有无参函数 // 有参函数 public Account(String cardId, String userWord, String passWord, double quotaMoney) { CardId = cardId; UserWord = userWord; PassWord = passWord; QuotaMoney = quotaMoney; } public String getCardId() { return CardId; } public void setCardId(String cardId) { CardId = cardId; } public String getUserWord() { return UserWord; } public void setUserWord(String userWord) { UserWord = userWord; } public String getPassWord() { return PassWord; } public void setPassWord(String passWord) { PassWord = passWord; } public double getMoney() { return Money; } public void setMoney(double money) { Money = money; } public double getQuotaMoney() { return QuotaMoney; } public void setQuotaMoney(double quotaMoney) { QuotaMoney = quotaMoney; } }
这里是第一个类用于构造函数 下面这个是第二个类
package com.wangxinhua; import java.lang.reflect.Array; import java.util.ArrayList; import java.util.Random; import java.util.Scanner; public class ATMSystem { public static void main(String[] args) { // 1.准备系统需要的容器对象,用户存储账户对象 ArrayList<Account> accounts = new ArrayList(); // 2.准备系统的首页,登入,开户 showMain(accounts); } public static void showMain(ArrayList<Account> accounts) //showMain 开户首页的意思 // ArrayList<Account> accounts 使用方法定义功能传入容器中 accounts是传参 { System.out.println("=============欢迎进入首页==========="); Scanner sc = new Scanner(System.in); while(true) { System.out.println("请您输入您想做的操作:"); System.out.println("1.登录"); System.out.println("2.开户"); System.out.println("您可以输入命令了:"); int command = sc.nextInt(); switch(command) { case 1: //登录 login(accounts,sc); break; case 2: //开户 register(accounts,sc); break; default: System.out.println("您当前输入的操作命令不被支持!"); } } } /** * 完成用户登录 * @param accounts */ private static void login(ArrayList<Account> accounts,Scanner sc) { //必须系统中存在账户才可以登录 if (accounts.size() == 0) { //没有任何账户 System.out.println("当前系统中无任何账户,您需要先注册!"); return;//直接结束方法的执行! } //2.让用户键盘录入卡号,根据卡号查询账户对象 while (true) { System.out.println("请您输入登录的卡号:"); String cardId = sc.next(); //根据卡号查询账户对象 Account acc = getAccountBycardId(cardId,accounts); // 3.判断账户对象是否存在,存在说明卡号没问题 if (acc != null) { while (true) { // 4.让用户继续输入密码 System.out.println("请您输入登录的密码:"); String password = sc.next(); // 5.判断密码是否正确 if (acc.getPassWord().equals(password)) { //密码正确,登入成功 //展示系统登录后的操作界面 System.out.println("恭喜您," + acc.getUserWord() +",成功登入系统,您的卡号是:" + acc.getCardId()); //展示操作页面 showUserCommand(sc,acc,accounts); return;//继续结束登录方法 } else { System.out.println("您的密码有误,请确认!"); } } } else { System.out.println("对不起,不存在该卡号的账户!"); } } } private static void showUserCommand(Scanner sc,Account acc,ArrayList<Account> accounts) { while (true) { System.out.println("=========用户操作页面========"); System.out.println("1.查询账户"); System.out.println("2.存款"); System.out.println("3.取款"); System.out.println("4.转账"); System.out.println("5.修改密码"); System.out.println("6.退出"); System.out.println("7.注销账户"); System.out.println("请您输入操作命令:"); int command = sc.nextInt(); switch (command) { case 1: //查询账户 showAccount(acc); break; case 2: //存款 depositMoney(acc,sc); break; case 3: //取款 drawMoney(acc,sc); break; case 4: //转账 transferMoney(accounts,acc ,sc); break; case 5: //修改密码 updataPassWord(acc,sc); return;//结束当前………… case 6: //退出 System.out.println("欢迎下次光临!!"); return; //结束当前showUserCommand(Scanner sc,Account acc)的方法 case 7: //注销账户 //从当前集合中抹掉当前账户对象即可 accounts.remove(acc); System.out.println("销户成功了!!"); return; default: System.out.println("您输入有误!"); } } } /** * 修改密码 * @param acc */ private static void updataPassWord(Account acc,Scanner sc) { System.out.println("===========修改密码========="); while (true) { System.out.println("请您输入正确的密码:"); String okPassWord = sc.next(); //判断密码是否正确 if (acc.getPassWord().equals(okPassWord)) { //可以输入新密码 System.out.println("请您输入新的密码:"); String newPassWord = sc.next(); System.out.println("请您输入确认密码:"); String okNewPassWord = sc.next(); if (newPassWord.equals(okNewPassWord)) { //修改账户对象的密码为新密码 acc.setPassWord(newPassWord); return;//直接结束方法! } else { System.out.println("您两次输入的密码不一致~~"); } } else { System.out.println("当前输入的密码不正确~~~"); } } } /** * 转账功能 * @param accounts * @param acc * @param sc */ private static void transferMoney(ArrayList<Account> accounts, Account acc, Scanner sc) { //1.判断系统中是否有2个账户及以上 if (accounts.size() < 2) { System.out.println("对不起,系统中无其他账户,您不可以转账!!"); return; } //2.判断自己的账户对象中是否有钱 if (acc.getMoney() == 0) { System.out.println("对不起,您自己都快吃土了,就别装逼了!!"); return; } //3.开始转账逻辑 while (true) { System.out.println("请您输入对方账户的卡号:"); String cardId = sc.next(); Account account = getAccountBycardId(cardId,accounts); //判断整个账户对象是否存在,存在说明对方卡号输入正确 if (account != null) { //判断这个账户对象是否是当前自己登录的账户 if (account.getCardId().equals(acc.getCardId())) { //也就是这里企图想给自己转账 System.out.println("您不能给自己转账!"); } else { //确认对方的姓氏 String name = "*" + account.getUserWord().substring(1); System.out.println("请您确认【" + name + "】的姓氏:"); String preName = sc.next(); //判断 if (account.getUserWord().startsWith(preName)) { //真正的转账才刚刚开始 System.out.println("请您输入转账的金额:"); double money = sc.nextDouble(); //判断这个金额是否超过了自己的金额 if (money > acc.getMoney()) { System.out.println("对不起,您要转账的金额太多,您最多可以转账:" + acc.getMoney()); } else { //开始了 acc.setMoney(acc.getMoney() - money); account.setMoney(account.getMoney() + money); System.out.println("恭喜您,转账成功了,已经为" + account.getUserWord() + "转账了:" + money); showAccount(acc); return; } } else { System.out.println("对不起,您认证的信息有误~~~"); } } } else { System.out.println("对不起,您输入的转账卡号有问题!!"); } } } /** * 取款操作 * @param acc * @param sc */ private static void drawMoney(Account acc, Scanner sc) { System.out.println("==========取款操作========="); //1.判断它的账户是否足够100元 if (acc.getMoney() >= 100) { while (true) { System.out.println("请您输入取款的金额:"); double money = sc.nextDouble(); //2.判断整个金额有没有超过当次限额 if (money > acc.getQuotaMoney()) { System.out.println("您当次取款金额超过每次限额,不要取那么多,每次最多可以取:" + acc.getQuotaMoney()); } else { //3.判断当前余额是否足够你取钱 if (acc.getMoney() >= money) { //够了,可以取钱了 acc.setMoney(acc.getMoney() - money); System.out.println("恭喜您,取钱" + money + "成功了!当前账户还剩余:" + acc.getMoney()); return;//取钱后干掉了取钱方法 } else { System.out.println("余额不足啊!!"); } } } } else { System.out.println("您自己的金额没有超过100元,该努力工作了~~~"); } } /** * 专门存钱的 * @param acc */ private static void depositMoney(Account acc,Scanner sc) { System.out.println("===========存钱操作========="); System.out.println("请您输入存款的金额:"); double money = sc.nextDouble(); //直接把金额修改到账户对象的money属性中去 acc.setMoney(acc.getMoney() + money); System.out.println("存款完成!"); showAccount(acc); } private static void showAccount(Account acc) { System.out.println("===========当前账户详情========="); System.out.println("卡号" + acc.getCardId()); System.out.println("姓名" + acc.getUserWord()); System.out.println("余额" + acc.getMoney()); System.out.println("当次限额:" + acc.getQuotaMoney()); } /** * 用户开户功能 * @param accounts 账户的集合对象 */ private static void register(ArrayList<Account> accounts, Scanner sc) { System.out.println("=========用户开户功能=========="); //键盘录入 姓名 密码 确认密码 System.out.println("请您输入开户名称:"); String name = sc.next(); String password = ""; while (true) { System.out.println("请您输入开户密码:"); password = sc.next(); System.out.println("请您输入确认密码:"); String okPassword = sc.next(); // 判断两次输入的密码是否一致 if (okPassword.equals(password)) //字符串比较用equals { break; } else { System.out.println("两次密码必须一致~~~"); } } System.out.println("请您输入当次限额:"); double quotaMoney = sc.nextDouble(); // 3.生成账户的卡号,卡号是8位,而且不能与其他账户卡号重复。 String cardId = creatCardId(accounts); // 4.创建一个账户对象封装账户的信息 // public Account(String cardId, String userWord, String passWord, double money, double quotaMoney) Account account = new Account(cardId,name,password,quotaMoney); // 5.把账户对象添加到集合中去 accounts.add(account); System.out.println("恭喜您,您开户成功,您的卡号是:" + account.getCardId() + ",请您妥善保管"); } public static String creatCardId(ArrayList<Account> accouts) { while (true) { // 生成8位随机的数字代表卡号 String cardId = ""; Random r = new Random(); for (int i = 0; i < 8; i++) { cardId += r.nextInt(10); } // 判断卡号是否重复了 Account acc = getAccountBycardId(cardId,accouts); if (acc == null) { // 说明当前卡号没有重复 return cardId; } } } public static Account getAccountBycardId(String cardId, ArrayList<Account> accounts) { // 根据卡号查询对象 for (int i = 0; i < accounts.size(); i++) { Account acc = accounts.get(i); if (acc.getCardId().equals(cardId)) { return acc; } } return null; //查无此账户,说明卡号没有重复了! } }
以上是Java如何實作ATM系統的詳細內容。更多資訊請關注PHP中文網其他相關文章!

本文討論了使用Maven和Gradle進行Java項目管理,構建自動化和依賴性解決方案,以比較其方法和優化策略。

本文使用Maven和Gradle之類的工具討論了具有適當的版本控制和依賴關係管理的自定義Java庫(JAR文件)的創建和使用。

本文討論了使用咖啡因和Guava緩存在Java中實施多層緩存以提高應用程序性能。它涵蓋設置,集成和績效優勢,以及配置和驅逐政策管理最佳PRA

本文討論了使用JPA進行對象相關映射,並具有高級功能,例如緩存和懶惰加載。它涵蓋了設置,實體映射和優化性能的最佳實踐,同時突出潛在的陷阱。[159個字符]

Java的類上載涉及使用帶有引導,擴展程序和應用程序類負載器的分層系統加載,鏈接和初始化類。父代授權模型確保首先加載核心類別,從而影響自定義類LOA

本文解釋了用於構建分佈式應用程序的Java的遠程方法調用(RMI)。 它詳細介紹了接口定義,實現,註冊表設置和客戶端調用,以解決網絡問題和安全性等挑戰。

本文詳細介紹了用於網絡通信的Java的套接字API,涵蓋了客戶服務器設置,數據處理和關鍵考慮因素,例如資源管理,錯誤處理和安全性。 它還探索了性能優化技術,我

本文詳細介紹了創建自定義Java網絡協議。 它涵蓋協議定義(數據結構,框架,錯誤處理,版本控制),實現(使用插座),數據序列化和最佳實踐(效率,安全性,維護


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

Dreamweaver CS6
視覺化網頁開發工具

DVWA
Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。

禪工作室 13.0.1
強大的PHP整合開發環境

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境