-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBook.java
More file actions
44 lines (36 loc) · 1.19 KB
/
Book.java
File metadata and controls
44 lines (36 loc) · 1.19 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
public class Book {
private String title;
private String author;
private int publicationYear;
private boolean isAvailable;
public Book(String title, String author, int publicationYear) {
this.title = title;
this.author = author;
this.publicationYear = publicationYear;
this.isAvailable = true;
}
public String getTitle() {
return title;
}
public String getAuthor() {
return author;
}
public int getPublicationYear() {
return publicationYear;
}
public boolean isAvailable() {
return isAvailable;
}
public void setAvailable(boolean available) {
isAvailable = available;
}
public static void main(String[] args) {
Book book = new Book("The Mayor of Casterbridge", "Thomas Hardy", 1886);
System.out.println("Book title: " + book.getTitle());
System.out.println("Book author: " + book.getAuthor());
System.out.println("Publication year: " + book.getPublicationYear());
System.out.println("Is available? " + book.isAvailable());
book.setAvailable(false);
System.out.println("Is available? " + book.isAvailable());
}
}