// 1.创建一个死期银行账户的类 // 成员变量: // 账户号码 // 密码(加密) // 存储金额(余额) // 存储年限 // 方法: // 构造方法 // 设置,账户号码,密码 // 存款 // 设置年限
时间: 2023-06-28 22:09:36 浏览: 78
以下是一个简单的实现:
```java
public class FixedDepositAccount {
private String accountNumber;
private String password;
private double balance;
private int years;
public FixedDepositAccount(String accountNumber, String password) {
this.accountNumber = accountNumber;
this.password = encryptPassword(password);
this.balance = 0.0;
this.years = 0;
}
public void setAccountNumber(String accountNumber) {
this.accountNumber = accountNumber;
}
public void setPassword(String password) {
this.password = encryptPassword(password);
}
public void deposit(double amount) {
this.balance += amount;
}
public void setYears(int years) {
this.years = years;
}
private String encryptPassword(String password) {
// 在这里进行密码加密
return password;
}
}
```
注:这只是一个简单的实现,实际生产环境下需要更多的安全措施。
阅读全文