package five;
public class Five {
public static void main(String[] args) {
User p1=new User();
p1.tell();
User p2=new User(“xpq”);
p2.tell();
User p3=new User(“xpq”,”mima123”);
p3.tell();
}
}
class User{
private String userName;
private String password;
private static int num; //使用static属性统计一个类到底产生了多少个实例化对象
public User(){ //定义无参构造方法
num++;
};
public User(String userName){ //定义单参构造方法
num++;
this.userName=userName;
}
public User(String userName,String password){ //定义双参构造方法
num++;
this.userName=userName;
this.password=password;
}
public String getPassword(){ //获取口令的方法
return password;
}
public void setPassword(String password){ //设置口令的方法
this.password=password;
}
public void tell(){
System.out.println(“用户名为”+userName+”对应口令为”+password+”用户个数为”+num);
}
}
版权声明:本文为博主原创文章,未经博主允许不得转载。