编写 User 类,要求具有(私有)属性:用户名(account)和密码(password);具有行为:密码的 setPassword()和 getPassword()方法。编写一个测试类,要求实例化一个User 用户,并且使用构造方法对其初始化,输出用户密码信息。
时间: 2024-03-23 08:42:21 浏览: 69
基础user类
好的,下面是代码示例:
```
public class User {
private String account;
private String password;
public User(String account, String password) {
this.account = account;
this.password = password;
}
public void setPassword(String password) {
this.password = password;
}
public String getPassword() {
return password;
}
}
```
测试类代码示例:
```
public class TestUser {
public static void main(String[] args) {
User user = new User("username", "password");
System.out.println("用户密码为:" + user.getPassword());
}
}
```
以上代码中,`User` 类定义了两个属性 `account` 和 `password`,以及两个方法 `setPassword()` 和 `getPassword()`。其中 `account` 和 `password` 均为私有属性,只能通过方法进行访问和修改。
测试类 `TestUser` 实例化了一个 `User` 对象,并且使用构造方法对其初始化,然后调用 `getPassword()` 方法输出用户的密码信息。
阅读全文