摘要: public class Jz extends Thread { private String name; private PanZi p; public Jz(){ } public Jz(PanZi p,String name){ this.p=p; this.name=name; } @Ove 阅读全文
posted @ 2016-06-05 23:34 Blueses 阅读(142) 评论(0) 推荐(0) 编辑
摘要: public class FileOperation { //读文件 public static UserInfo[] readFile(){ //把文件中的数据先读到Properties容器中 Properties props =new Properties(); try { props.load 阅读全文
posted @ 2016-06-05 22:55 Blueses 阅读(316) 评论(0) 推荐(0) 编辑
摘要: public class ATMMachine { //所有用户信息 private UserInfo[] allUsers; //当前操作用户信息 private UserInfo user; // 现金 private int cash; // 现金容量上限 public static fina 阅读全文
posted @ 2016-06-05 22:44 Blueses 阅读(302) 评论(0) 推荐(0) 编辑