查看完整内容
public class creditCard {
//余额属性
private int restMoney;
public int getRestMoney() {
return restMoney;
}
public void setRestMoney(int restMoney) {
this.restMoney = restMoney;
}
//充值
public int topUp(int Money){
this.restMoney += Money;
return restMoney;
...