• 大小: 8.21KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 语言: Java
  • 标签:

资源简介

java 集合 synchronized 操作示例代码

资源截图

代码片段和文件信息

package wpy.bank;

import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Random;

public class Account {
private int money = 0;
private int save_money = 0;
private int off_money = 0;
private String fileName = “log.txt“;
BufferedWriter writer = null;

public int getMoney() {
return money;
}

private int take_off_money = 0;

public int getTake_off_money() {
return take_off_money;
}

private boolean available = true;
private boolean flag = true;
private int multiple = 0;

public Account(int money) {
this.money = money;
try {
writer = new BufferedWriter(new FileWriter(fileName));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

public

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-04-11 22:50  test9\
     文件         301  2015-06-23 16:09  test9\.classpath
     文件         381  2015-06-23 16:09  test9\.project
     目录           0  2016-04-11 22:50  test9\.settings\
     文件         598  2015-06-23 16:09  test9\.settings\org.eclipse.jdt.core.prefs
     目录           0  2016-04-11 22:50  test9\bin\
     目录           0  2016-04-11 22:50  test9\bin\wpy\
     目录           0  2016-04-11 22:50  test9\bin\wpy\bank\
     文件        2447  2015-06-23 16:33  test9\bin\wpy\bank\Account.class
     文件         538  2015-06-23 16:10  test9\bin\wpy\bank\Bank.class
     文件        1141  2015-06-23 16:17  test9\bin\wpy\bank\BankTaskTest.class
     文件        1289  2015-06-23 16:13  test9\bin\wpy\bank\User.class
     文件          58  2015-06-23 16:33  test9\log.txt
     目录           0  2016-04-11 22:50  test9\src\
     目录           0  2016-04-11 22:50  test9\src\wpy\
     目录           0  2016-04-11 22:50  test9\src\wpy\bank\
     文件        2369  2015-06-23 16:33  test9\src\wpy\bank\Account.java
     文件         191  2015-06-23 16:10  test9\src\wpy\bank\Bank.java
     文件         483  2015-06-23 16:17  test9\src\wpy\bank\BankTaskTest.java
     文件         678  2015-06-23 16:13  test9\src\wpy\bank\User.java

评论

共有 条评论