-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBook.java
More file actions
46 lines (37 loc) · 966 Bytes
/
Copy pathBook.java
File metadata and controls
46 lines (37 loc) · 966 Bytes
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
import java.util.Objects;
public class Book {
private String title;
private String author;
private boolean isIssued;
public Book(String title, String author) {
this.title = title;
this.author = author;
this.isIssued = false;
}
public String getTitle() {
return title;
}
public String getAuthor() {
return author;
}
public boolean isIssued() {
return isIssued;
}
public void issue() {
isIssued = true;
}
public void returnBook() {
isIssued = false;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Book)) return false;
Book book = (Book) o;
return title.equals(book.title) && author.equals(book.author);
}
@Override
public int hashCode() {
return Objects.hash(title, author);
}
}