Java语言程序设计:设计银行账户类,属性包括账号、储户名称、开户时间、身份证号码、存款余额等
Java:设计银行账户类,属性包括账号、储户名称、开户时间、身份证号码、存款余额等账户信息。成员方法包括开户、存款、取款、查询(余额、明细)、销户等操作。还需要声明一个静...
Java:设计银行账户类,属性包括账号、储户名称、开户时间、身份证号码、存款余额等账户信息。成员方法包括开户、存款、取款、查询(余额、明细)、销户等操作。还需要声明一个静态变量用于存储当前有效账户数量(开户时增加,销户时减少)。
•其他要求:1.声明多个构造方法,方便使用
•2.重写toString()方法,用以返回账号的基本信息 展开
•其他要求:1.声明多个构造方法,方便使用
•2.重写toString()方法,用以返回账号的基本信息 展开
3个回答
展开全部
写个例子吧,既没有分,又不付费。。。。真的是。。
public class account{
public static int serviceNum;
private String account;
private String password;
......
public String getAccount(){
return this.account;
}
public void setAccount(String account){
this.account = account;
}
public String getPassword(){
return this.password;
}
public void setPassword(String password){
this.password = password
}
public Account(String account,String password){
this.account = account;
this.password = password;
}
public Account(String account){
this.account = account;
}
@overrite
public String toString(){
return this.account + "-" + this.password;
}
}
public class account{
public static int serviceNum;
private String account;
private String password;
......
public String getAccount(){
return this.account;
}
public void setAccount(String account){
this.account = account;
}
public String getPassword(){
return this.password;
}
public void setPassword(String password){
this.password = password
}
public Account(String account,String password){
this.account = account;
this.password = password;
}
public Account(String account){
this.account = account;
}
@overrite
public String toString(){
return this.account + "-" + this.password;
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以帮你做,不免费,需要就继续追问哦
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不是很难吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询