当前位置: 代码迷 >> J2SE >> 本人初学者,程序
  详细解决方案

本人初学者,程序

热度:82   发布时间:2016-04-24 01:58:35.0
本人菜鸟,求一个程序
定义考试系统中的用户类(Register类)。其中,每个Register对象对应一个注册用户,保寻相关的姓名(name)、密码(password)、性别(sex)、年龄(age)和班级(class)

------解决方案--------------------
class Register
{
string name;
string password;
string sex;
int age;
string class;
}
------解决方案--------------------
class Register
{
string name;
string password;
boolean sex; //0 as male, 1 as female
byte age;//a human age won't be bigger 127
string class;
}

使用 byte 保存年龄的资料,节省空间
------解决方案--------------------
密码不能是明文的,要用密钥加密。。。。
  相关解决方案