设计一个Personal类:(1)该类有实例变量(属性)id、name、age、sex;(2)一个无参构造函数和一个有参构造函数;(3)一组用于访问实例变量的set/get方法。再设一个测试类TestPersonal,测试该类。
时间: 2024-05-10 21:17:46 浏览: 72
ios demo,自定义一个类,实例变量和成员变量的实现
以下是Personal类的示例代码:
```java
public class Personal {
private int id;
private String name;
private int age;
private String sex;
public Personal() {
}
public Personal(int id, String name, int age, String sex) {
this.id = id;
this.name = name;
this.age = age;
this.sex = sex;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
}
```
以下是TestPersonal类的示例代码:
```java
public class TestPersonal {
public static void main(String[] args) {
Personal person = new Personal();
person.setId(1);
person.setName("张三");
person.setAge(20);
person.setSex("男");
System.out.println("ID:" + person.getId());
System.out.println("姓名:" + person.getName());
System.out.println("年龄:" + person.getAge());
System.out.println("性别:" + person.getSex());
}
}
```
运行TestPersonal类的main方法,输出结果如下:
```
ID:1
姓名:张三
年龄:20
性别:男
```
阅读全文