?? user.java
字號:
package user;
public class User
{
private int userid =0;
private String username = null;
private String rname = null;
private String password = null;
private String email = null;
private String address = null;
private String datetime = null;
private String tel = null;
public User (int uid, String un, String rn, String pwd, String ema, String addr, String dt, String phone)
{
this.userid = uid;
this.username = un;
this.rname=rn;
this.password = pwd;
this.email=ema;
this.address=addr;
this.datetime=dt;
this.tel=phone;
}
public int getId ()
{
return this.userid;
}
public String getUsername ()
{
return this.username;
}
public String getRname ()
{
return this.rname;
}
public String getPassword ()
{
return this.password;
}
public String getEmail ()
{
return this.email;
}
public String getAddress ()
{
return this.address;
}
public String getDatetime ()
{
return this.datetime;
}
public String getTel ()
{
return this.tel;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -