-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBook.cpp
More file actions
148 lines (123 loc) · 2.55 KB
/
Book.cpp
File metadata and controls
148 lines (123 loc) · 2.55 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#include <iostream>
#include <iomanip>
#include "User.h"
#include "Book.h"
using namespace std;
int Book::count = 0;
Book::Book()
{
title = "";
isbn = "";
category = "";
count++;
id = count;
averageRating = 0.0;
hasAuthor = false;
numRates = 0;
sumRatings = 0.0;
}
Book::Book(string title, string isbn, string category)
{
this->title = title;
this->isbn = isbn;
this->category = category;
count++;
id = count;
averageRating = 0.0;
hasAuthor = false;
numRates = 0;
sumRatings = 0.0;
}
Book::Book(const Book &book)
{
title = book.title;
isbn = book.isbn;
category = book.category;
count++;
id = count;
averageRating = book.averageRating;
numRates = book.numRates;
sumRatings = book.sumRatings;
// author = book.author;
if (book.hasAuthor)
{
setAuthor(book.author);
}
}
void Book::setTitle(string title)
{
this->title = title;
}
string Book::getTitle() const
{
return title;
}
void Book::setIsbn(string isbn)
{
this->isbn = isbn;
}
string Book::getIsbn() const
{
return isbn;
}
void Book::setCategory(string category)
{
this->category = category;
}
string Book::getCategory() const
{
return category;
}
void Book::setId(int id)
{
this->id = id;
}
int Book::getId() const
{
return id;
}
void Book::setAuthor(const User &author)
{
hasAuthor = true;
this->author = author;
}
User Book::getAuthor() const
{
return author;
}
double Book::getAverageRating() const
{
return averageRating;
}
void Book::rateBook(double rating)
{
sumRatings += rating;
numRates++;
averageRating = numRates / sumRatings;
}
bool Book::operator==(const Book &book)
{
return (title == book.title && isbn == book.isbn && id == book.id && category == book.category && author == book.author && averageRating == book.averageRating);
}
ostream &operator<<(ostream &output, const Book &book)
{
output << "\n-------------------------"
<< "\nBook's title: " << book.title
<< "\nBook's id: " << book.id
<< "\nBook's category: " << book.category
<< "\nBook's isbn: " << book.isbn
<< "\nBook's rating: " << book.averageRating
<< "\n-------------------------\n";
if (book.hasAuthor == true)
{
cout << (book.author);
}
return output;
}
istream &operator>>(istream &input, Book &book)
{
cout << "Enter book's info(title,category,isbn): ";
input >> book.title >> book.category >> book.isbn;
// book.averageRating = 0.0;
return input;
}