1、定义Employee员工类: 私有属性:姓名,工号,工资; 公有的构造方法:3个参数,为三个属性赋值; 公有方法: 每个属性的getter和setter方法; print方法,输出员工的所有信息;用Java实现
时间: 2024-03-16 12:45:21 浏览: 63
好的,以下是定义Employee员工类的Java代码,包括属性的getter和setter方法以及print方法:
```java
public class Employee {
private String name;
private String id;
private double salary;
public Employee(String name, String id, double salary) {
this.name = name;
this.id = id;
this.salary = salary;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public double getSalary() {
return salary;
}
public void setSalary(double salary) {
this.salary = salary;
}
public void print() {
System.out.println("姓名:" + name);
System.out.println("工号:" + id);
System.out.println("工资:" + salary);
}
}
```
在这个代码中,我们添加了三个getter和setter方法来获取和设置Employee类的私有属性。此外,我们还添加了一个print方法来输出Employee对象的所有信息。需要注意的是,这里的输出方式可以根据实际需求进行调整。
阅读全文