




已阅读5页,还剩10页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
网页 图片 视频 音乐 问问 百科 新闻 地图 更多 登录 搜搜问问窗体顶端窗体底端 问问首页 问题库 知识频道 用户频道 问问活动 问问团队 问问商城 电脑/数码 生活家居 QQ专区 游戏 奥运体育 娱乐/明星 休闲/爱好 艺术/文学 社会/人文 教育/科学 健康/医疗 商业/理财 情感/家庭 地区问题 全部问题 电脑/数码编程 分享: 腾讯微博 QQ空间 新浪微博 | 收藏 Evolution 2009-04-21 谁帮我用JAVA写一个简单的模拟ATM的程序谁帮我用JAVA写一个简单的模拟ATM的程序最好要有思路,或直接给个网站也行.谢谢了 满意答案Sy.Memoryer 3级 2009-04-21 public class BankSys /private int uId; /这写好像用不上,你自己看着加吧 /private String uName;/private String address;private double minMon=0.50;private double money=1000.50;public static void main(String args) String answer;System.out.println(欢迎进入存取款系统!);System.out.println(-);doSystem.out.println(1.取款 t2.查询余额t3.存款);Scanner sc=new Scanner(System.in);BankSys bank=new BankSys();int num=sc.nextInt();switch (num) case 1:bank.get();break;case 2:bank.search();break;case 3:bank.deposit();break;default:break;System.out.println(是否继续?(y/n));answer=sc.next();while(answer.equals(y);System.out.println(程序结束);public void deposit()Scanner sc=new Scanner(System.in);System.out.println(请输入存款金额:);double input=sc.nextInt();System.out.println(您的帐户原有余额为:+money+元);System.out.println(已存入:+input+元);money+=input;System.out.println(您的帐户最终存款余额为:+money+元);public void search()System.out.println(您的帐户余额为:+money+元);public void get()Scanner sc=new Scanner(System.in);System.out.println(请输入取款金额:);double input=sc.nextInt();if (moneyjava模拟atm查询余模拟atm柜员机程序atm取款机java程序atm程序 java用java写atm界面代atm是什么意思java atm取款机系统java程序Top何夏冰 随风 安靜聽 助提意见 5.1 程序源代码 import javax.swing.*; import javax.swing.JOptionPane; import java.awt.event.*; public class ATMmodel Account myaccount=new Account(); Load load=new Load(); MainFrame Jmain=new MainFrame(); Take take=new Take(); Input input=new Input(); Display dis=new Display(); Setpw setpw=new Setpw(); public ATMmodel() JOptionPane.showMessageDialog(null,欢迎使用ATM柜员模拟系统); public static void main(String args) ATMmodel atm=new ATMmodel(); /*创建账户*/ class Account private int count=10000; /初始账户余额10000 private String account=123456; /初始账号 private String password=123456; /初始密码 public Account() public void setpw(String password) this.password=password; public void deccount(int money) count-=money; public void reccount(int money) count+=money; public int get() return count; public String getaccount() /账号 return account; public String getpw() return password; /* 主界面*/ class MainFrame extends JFrame public JButton checked; public JButton cunkuan; public JButton quit; public JButton qukuan; public JButton reset; public MainFrame() initComponents(); this.setLocationRelativeTo(null); / this.setVisible(false); /* 控件初始化*/ private void initComponents() cunkuan = new JButton(); qukuan = new JButton(); checked = new JButton(); reset = new JButton(); quit = new JButton(); setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); setTitle(ATM柜员模拟程序); setName(mianframe); setResizable(false); cunkuan.setText(存款); cunkuan.addActionListener(new ActionListener() public void actionPerformed(ActionEvent evt) cunkuanActionPerformed(evt); ); 面向对象课程设计ATM柜员机模拟程序 6 qukuan.setText(取款); qukuan.addActionListener(new ActionListener() public void actionPerformed(ActionEvent evt) qukuanActionPerformed(evt); ); checked.setText(查询); checked.addActionListener(new ActionListener() public void actionPerformed(ActionEvent evt) checkedActionPerformed(evt); ); reset.setText(修改密码); reset.addActionListener(new ActionListener() public void actionPerformed(ActionEvent evt) resetActionPerformed(evt); ); quit.setText(退出); quit.addActionListener(new ActionListener() public void actionPerformed(ActionEvent evt) quitActionPerformed(evt); ); GroupLayout layout = new GroupLayout(getContentPane(); /GroupLayout它将组件按层次分组,以决定它们在 Container 中的位置 getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addComponent(cunkuan) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 105, Short.MAX_VALUE) .addComponent(reset) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addComponent(qukuan) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 143, Short.MAX_VALUE) .addComponent(quit) 面向对象课程设计ATM柜员机模拟程序 8 /*登录界面*/ class Load extends JFrame public JPasswordField Jpassword; public JTextField accountnum; public JButton commit; private JLabel jL1; private JLabel jL2; public Load() initComponents(); this.setLocationRelativeTo(null); this.setVisible(true); private void initComponents() jL1 = new JLabel(); jL2 = new JLabel(); accountnum = new JTextField(); commit = new JButton(); Jpassword = new JPasswordField(); setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); setTitle(ATM柜员模拟程序); setResizable(false); jL1.setText(账号:); jL2.setText(密码:); commit.setText(确定); commit.addActionListener(new java.awt.event.ActionListener() public void actionPerformed(java.awt.event.ActionEvent evt) commitActionPerformed(evt); ); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane(); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap(50, Short.MAX_VALUE) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addComponent(jL1) .addComponent(jL2) .addGap(31, 31, 31) 面向对象课程设计ATM柜员机模拟程序 9 .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) .addComponent(Jpassword) .addComponent(accountnum, javax.swing.GroupLayout.DEFAULT_SIZE, 143, Short.MAX_VALUE) .addGroup(layout.createSequentialGroup() .addGap(122, 122, 122) .addComponent(commit) .addContainerGap(72, Short.MAX_VALUE) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(85, 85, 85) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(accountnum, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jL1) .addGap(41, 41, 41) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jL2) .addComponent(Jpassword, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 72, Short.MAX_VALUE) .addComponent(commit) .addGap(64, 64, 64) ); pack(); private void commitActionPerformed(ActionEvent evt) if(accountnum.getText().equals(myaccount.getaccount() & Jpassword.getText().equals(myaccount.getpw() Jmain.setVisible(true); this.setVisible(false); accountnum.setText(); Jpassword.setText(); else JOptionPane.showMessageDialog(null,密码与账户不匹配,请重新输入,出错提示,1); 面向对象课程设计ATM柜员机模拟程序 12 .BASELINE) .addComponent(commit) .addComponent(back) .addGap(29, 29, 29) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(clear) .addComponent(quit) .addContainerGap(65, Short.MAX_VALUE) ); pack(); private void clearActionPerformed(ActionEvent evt) str=; jT1.setText(str); private void quitActionPerformed(ActionEvent evt) load.setVisible(true); this.setVisible(false); private void backActionPerformed(ActionEvent evt) Jmain.setVisible(true); this.setVisible(false); private void commitActionPerformed(ActionEvent evt) if(Integer.parseInt(jT1.getText()0 & Integer.parseInt(jT1.getText()%100=0 & Integer.parseInt(jT1.getText()=5000) myaccount.deccount(Integer.parseInt(jT1.getText(); int result=javax.swing.JOptionPane.showConfirmDialog(null,是否显示余额?,javax.swing.JOptionPane.YES_NO_OPTION,javax.swing.JOptionPane.QUESTION_MESSAGE); if(result=javax.swing.JOptionPane.YES_OPTION) dis.set(String.valueOf(myaccount.get(); str=; jT1.setText(str); dis.setVisible(true); this.setVisible(false); else Jmain.setVisible(true); 面向对象课程设计ATM柜员机模拟程序 13 this.setVisible(false); else JOptionPane.showMessageDialog(null,取款金额不能为负数+n取款金额不能为0+n取款金额必须是100的倍数+n金额一次不能超过5000+n请重新输入你要取的金额数,出错提示,1); str=; jT1.setText(str); /*存款界面*/ class Input extends JFrame private JButton clear; private JButton commit; private JLabel jL1; private JTextField jT1; String str=; public Input() initComponents(); this.setLocationRelativeTo(null); this.setResizable(false); this.setVisible(false); private void initComponents() jL1 = new JLabel(); jT1 = new JTextField(); commit = new JButton(); clear = new JButton(); setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); jL1.setText(存款金额:); commit.setText(确认); commit.addActionListener(new ActionListener() public void actionPerformed(ActionEvent evt) commitActionPerformed(evt); ); clear.setText(清除); clear.addActionListener(new java.awt.event.ActionListener() 面向对象课程设计ATM柜员机模拟程序 17 ); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane(); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(27, 27, 27) .addComponent(jL1) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(jT1, javax.swing.GroupLayout.PREFERRED_SIZE, 143, javax.swing.GroupLayout.PREFERRED_SIZE) .addContainerGap(36, Short.MAX_VALUE) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addContainerGap(215, Short.MAX_VALUE) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addComponent(back) .addComponent(qukuan) .addComponent(quit) .addContainerGap() ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(93, 93, 93) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jL1) .addComponent(jT1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(54, 54, 54) .addComponent(qukuan) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(back) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(quit) .addContainerGap() ); pack(); 面向对象课程设计ATM柜员机模拟程序 18 private void qukuanActionPerformed(ActionEvent evt) take.setVisible(true); this.setVisible(false); private void quitActionPerformed(ActionEvent evt) load.setVisible(true); this.setVisible(false); private void backActionPerformed(ActionEvent evt) Jmain.setVisible(true); this.setVisible(false); /*修改密码 */ class Setpw extends JFrame public JButton commit; public JLabel commitpw; public JPasswordField jPwcommit; public JPasswordField jPwnew; public JPasswordField jPwold; public JLabel newpw; public JLabel oldpw; public JButton quit; public Setpw() initComponents(); this.setResizable(false); this.setLocationRelativeTo(null); /this.setVisible(false); private void initComponents() oldpw = new JLabel(); newpw = new JLabel(); commitpw = new JLabel(); jPwold = new JPasswordField(); jPwnew = new JPasswordField(); jPwcommit = new JPasswordField(); commit = new javax.swing.JButton(); quit = new javax.swing.JButton(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); oldpw.setText(旧密码:); newpw.setText(新密码:); 面向对象课程设计ATM柜员机模拟程序 21 flag=true; else flag=false; break; /密码全部一样则给出提示 if(flag) JOptionPane.showMessageDialog(null,密码不能全都相同,错误提示,1); /以上情况都没出现则修改成功 else if(jPwold.getText().equals(myaccount.getpw() & jPwnew.getText().equals(jPwcommit.getText() myaccount.setpw(jPwnew.getText(); JOptionPane.showMessageDialog(null,密码修改成功,请记住你的新密码,1); Jmain.setVisible(true); this.setVisible(false); private void quitActionPerformed(java.awt.event.ActionEvent evt) load.setVisible(true); this.setVisible(false); 5.2 源代码说明 5.2.1 源代码中自定义类的说明: 代码中出现的Account类、MainFrame类、Load类、Take类、Input类、Setpew类和Display类都继承了Java类JFrame。 (1)Class Accout创建客户,初始化客户信息功能以及保存客户信息,例如:卡号、密码、原有余额、取款后卡里的余额以及存款后卡里的余额。此类包含的成员有:成员变量account、count、password和方法构造方法Account()。 面向对象课程设计ATM柜员机模拟程序 22 (2)Class MainFrame构造主界面,提供业务选择,让用户可以在这个界面选择存款、取款、查询余额、修改密码。它包含的成员有:构造方法MainFrame()和初始化主界面的方法 initComponents()以及成员变量checked、cunkuan、quite、qukuan、reset。 (3)Class Load 实现登录功能和登录界面,如果用户名和密码匹配就可以登录到主界面否则报错。它的成员有:Jpassword、accountnum、committ、JL1、JL2和构造方法Load()和初始化方法initComponents()。 (4)Class Take实现取款功能,按返回键返回主界面,按清除键可以删除输入数字,并且取出的金额必须是100的整数倍,一次取出的金额不能超过5000,取完款后可以显示余额。该类的成员有:back、clear、commit、quite、JL1、JT1和构造方法Take()和初始化的initComponents()。 (5)Class input实现存款功能,存款的金额必须是100的整数倍,否则报错提示重新输入。成员有:clear、commit、jL1、jT1、str以及构造函数Inputhe()和初始化方法initComponents() (6)Class Display功能为显示当前余额,在显示余额时JTextField的内容不可以编辑,成员有:成员变量back、jL1、quit、qukuan和构造方法Display()和方法数set(String str)和初始化的方法initComponents()。 (7)class Setpw创建此类是为了实现修改密码的功能,设置的密码必须是六位以上的字符,并且所设置的密码不能是同一个字符组成,否则报错。成员有:成员变量commit、commitpw、jPwcommit、jPwnew、jPwold、newpw、oldpw、quit和构造方法Setpw()和初始化方法initComponents()。 5.2.2源代码中的事件监听器 (1) MainFrame类的监听器 在该
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 果仁酥糖行业深度研究分析报告(2024-2030版)
- 调温离子烫行业深度研究分析报告(2024-2030版)
- 2025年中国葵花油市场前景预测及投资规划研究报告
- 中国自然风光类主题酒店市场深度分析及投资战略咨询报告
- 2024年全球及中国高温和低温缓蚀剂行业头部企业市场占有率及排名调研报告
- 2025年专项化学用品制造业深度分析报告
- 中国防绒面料行业市场发展前景及发展趋势与投资战略研究报告(2024-2030)
- 车翻转开关行业深度研究分析报告(2024-2030版)
- 中国鼠笼式异步电机行业发展前景预测及投资战略研究报告
- 2023-2029年中国智能汽车车联网行业发展监测及市场发展潜力预测报告
- 患者隐私保护培训课件
- 四川凉山州人民政府办公室考调所属事业单位工作人员2人高频重点提升(共500题)附带答案详解
- 分包单位负责人岗位责任制度模版(3篇)
- 2023年高考化学试卷(河北)(解析卷)
- 2025年国家信息中心招聘15人高频重点提升(共500题)附带答案详解
- 基于STM32单片机的人体感应灯设计
- 教学课件英语人教版2024版七年级初一上册Unit 1 You and Me Section A1a1d2
- 学前儿童语言教育与活动指导-期末试卷(二)
- 畜牧业边境管理办法
- 基于单片机的步进电机控制系统的设计【毕业论文】
- 化工行业保安工作计划
评论
0/150
提交评论