-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDemo3.java
More file actions
75 lines (67 loc) · 1.4 KB
/
Copy pathDemo3.java
File metadata and controls
75 lines (67 loc) · 1.4 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import java.util.ArrayList;
class Employee{
private int id;
private String name;
private double salary;
Employee(int id, String name, double salary){
this.id = id;
this.name = name;
this.salary = salary;
}
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 double getSalary() {
return salary;
}
public void setSalary(double salary) {
this.salary = salary;
}
@Override
public String toString() {
return "Employee (id=" + id + ", name=" + name + ", salary=" + salary
+ ")";
}
@Override
public boolean equals(Object o){
Employee e = (Employee) o;
if(this.id == e.id && this.name.equals(e.name)
&& this.salary==e.salary){
return true;
}
else
{
return false;
}
}
}
public class Demo3 {
public static void main(String[] args) {
ArrayList<Employee> empList = new ArrayList<>();
Employee ram = new Employee(1001, "Ram", 9090);
empList.add(ram);
Employee shyam = new Employee(1002, "Shyam", 7878);
empList.add(shyam);
System.out.println(empList);
Employee searchRam = new Employee(1001, "Ram", 9090);
// Search Operation
int indexNo = empList.indexOf(searchRam);
if(indexNo>=0){
System.out.println("Found...");
empList.remove(indexNo);
}
else
{
System.out.println("Not Found...");
}
}
}