JAVA编程简单的银行系统

创建交易类型,存款或者提款的编程publicclassTransation{//instancevariablesprivate.....private...privat... 创建交易类型,存款或者提款的编程public class Transation{//instance variablesprivate.....private...private...public Transaction(....,....,...,){//instance variables....=.....;....=.....;....=......;} public...get ...(){return.....}..........} 省略号那些该怎么填? 或者不按照那些模式,怎么创建一个关于交易的类型 谢谢 展开
 我来答
匿名用户
2013-11-13
展开全部
public class Transation { private String tranType; // 定义交易类型
private String tranAccount; // 定义交易账号
private double tranAmount; // 定义交易金额 public Transation(String tranType, String tranAccount, double tranAmount) { // 定义构造函数
this.tranAccount = tranAccount;
this.tranAmount = tranAmount;
this.tranType = tranType;
} //定义得到和设置属性的方法
public String getTranType() {
return tranType;
} public void setTranType(String tranType) {
this.tranType = tranType;
} public String getTranAccount() {
return tranAccount;
} public void setTranAccount(String tranAccount) {
this.tranAccount = tranAccount;
} public double getTranAmount() {
return tranAmount;
} public void setTranAmount(double tranAmount) {
this.tranAmount = tranAmount;
}
}
匿名用户
2013-11-13
展开全部
private String username;
private String password;
private int transtype;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public int getTranstype() {
return transtype;
}
public void setTranstype(int transtype) {
this.transtype = transtype;
}
public Transaction(String username, String password, int transtype) {
super();
this.username = username;
this.password = password;
this.transtype = transtype;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式