https://www.myziyuan.com/
- H5支付系统
- public class Employee{ private int id; private String name; private double salary; private String department; public Employee(int id) { super(); this.id = id; } public Employee(int id, String name) { super(); this.id = id; this.name = name; } public Employee(int id, String name, double salary, String department) { super(); this.id = id; this.name = name; this.salary = salary; this.department = department; } public Employee() { super(); } @Override public String toString() { return "工号:" + this.id + "\t姓名:" + this.name + "\t薪水:" + this.salary + "\t部门:" + this.department; } public static void main(String[] args) { Employee employee1 = new Employee(1); System.out.println(employee1); Employee emplo1981yee2 = new Employee(2, "Mike"); System.out.println(employee2); Employee employee3 = new Employee(3, "Jack", 5000, "行政"); System.out.println(employee3); Employee employee4 = new Employee(); System.out.println(employee4); }}
- 2021-12-12 13:01:41
- 互站网
- 简单的Java管理系统,您想要管理什么?登录注册是必需的,会员信息,权限管理,其他人看到您的业务形式.Welcome到IDEHUB(I Coce-Gang Code)社区问题,在线有一项专业性要回答各种技术问题,有一个问题,而移动Java编码工件即将被释放,所以保持调整!
- 2021-12-12 12:59:55
- 网站模板素材下载
- java如何设计一个员工类employee,public class Employee{ private String name;//姓名 private int salary;//薪水public Employee(){//无参构造函数 } public Employee(String name,int salary){ //有参构造函数 this.name=name; this.salary=salary; //局部变量若与类变量同名,则以局部变量为准,类变量需要用this引用 }public void setName(String name){this.name=name; } public String getName(){ return this.name; } public void setSalary(int salary){ this.salary=salary; } public int getSalary(){ return this.salary; }} //测试类public class Test(){ public static void main(String args[]){ Employee e = new Employee("张三",1200); System.out.println(e.getName());//输出姓名System.out.println(e.getSalary());//输出薪水Employee e2= new Employee();e2.setName("李四"); e.setSalary(1000); System.out.println(e2.getName());//输出姓名System.out.println(e2.getSalary());//输出薪水 }}*运行结果张三1200李四1000*
- 2021-12-12 12:59:55