Search Interview Questions | ![]() ![]() Click here and help us by providing the answer. ![]() Click Correct / Improve and please let us know. |
|
| ||||
Interview Questions and Answers | ||||
| ||||
Ans. class Student { /// /// /// private int id; private String name; /// /// /// public Student(int id, String name) { this.name = name; this.id = id; }// Student /// /// /// public int getId() { return id; }// getId /// /// /// public void setId(int id) { this.id = id; }// setId /// /// /// public String getName() { return name; }// getName /// /// /// public void setName(String name) { this.name = name; }// setName @Override public boolean equals(Object obj) { if (obj == null) return false; if (!(obj instanceof Student)) return false; if (obj == this) return true; return this.getId() == ((Student) obj).getId(); }// equals /// /// /// @Override public int hashCode() { return this.getId(); }// hashCode }// Student | ||||
![]() | ||||
![]() ![]() ![]() ![]() | ||||
![]() | ||||
![]() | ||||
![]() | ||||