-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEmployee.java
30 lines (26 loc) · 898 Bytes
/
Employee.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
class Employee {
private String name;
private String position;
private String email;
private String phone;
private int salary;
private int age;
int getAge() {
return age;
}
Employee(String name, String position, String email, String phone, int salary, int age) {
this.name = name;
this.position = position;
this.email = email;
this.phone = phone;
this.salary = salary;
this.age = age;
}
void print() {
System.out.println("Name: " + name + " | " + " Position: " + position + " | " + " e-mail: " + email + " | "
+ " Phone: " + phone + " | " + " Salary: " + salary + " | " + " Age: " + age);
}
// public String toString() {
// return name + " | " + position + " | " + email + " | " + phone + " | " +
// salary + " | " + age;
}