Advertisement

HashMap集合综合运动演示(会员积分商城管理系统)

阅读量:

会员积分商城管理系统

/**

  • 实体类
  • @author jiangguolin

*/
public class VipUser {

·声明一个字符串类型变量phone用来表示电话号码
·声明一个字符串变量password用于存储密码
·声明一个长整数类型变量score记录积分值
·声明一个日期对象 startTime表示开户时间

public String retrievePhone() {
return the current value of this.phone;
}
public void updatePhone(String newPhone) {
this.phone = newPhone;
}
public String retrievePassword() {
return the current value of this.password;
}
public void updatePassword(String newPassword) {
this.password = newPassword;
}
public long getTotalScore() {
return the total score calculated by t

全部评论 (0)

还没有任何评论哟~