book class 1.3 [adding patron class]

Bjarne Stroustrup “Programming Principles and Practice Using C++”
Chapter 9 Exercise 8
Using std_lib_facilities.h by Bjarne Stroustrup.
Using Chrono.h and Chrono.cpp by Bjarne Stroustrup,
including the Chrono.h header file and the Chrono.cpp source file. Chrono is an extensive date class used in this exercise.

My project includes the following files:
Chrono.h date class header file
Chrono.cpp date class source file
p340_8_book_main.cpp my main cpp file
p340_8_my_book_class.h my book class header file
p340_8_book_source.cpp my book class header file’s source file

p340_8_book_main.cpp my main cpp file

[code language=”cpp”]
// Philipp Siedler
// Bjarne Stroustrup’s PPP
// Chapter 9 Exercise 8

#include "p340_8_my_book_class.h"
using namespace Chrono;

void add_books() {
Book my_Book(ISBN(), "book1", "author1", Date(2000, Date::jul, 5), Genre::biography, false);
}

int main()
try
{
add_books();
Patron examplePatron("Phil", 100);
cout << examplePatron;
keep_window_open();
}
catch (runtime_error e) {
cout << e.what() << endl;
keep_window_open();
}
catch (…) {
cout << "Exiting" << endl;
keep_window_open();
}
[/code]

p340_8_my_book_class.h header file

[code language=”cpp”]
#include "std_lib_facilities.h"
#include "Chrono.h"
using namespace Chrono;

//BOOK CLASS——
struct ISBN {
int n0, n1, n2;
char x;
ISBN(int n0, int n1, int n2, char x);
ISBN();
};

// exercise 7 genre enumerator
enum Genre {
fiction = 0,
nonfiction,
periodical,
biography,
children
};

class Book {
private:
ISBN isbn;
string title;
string author;
Date copyright_date;
Genre genre;
bool checked_out;

public:
Book(ISBN _isbn, string _title, string _author, Date _copyright_date, Genre _genrebook, bool _checked_out);
Book();
ISBN isbnf() { return isbn; }
string titlef() { return title; }
string authorf() { return author; }
Date copyright_datef() { return copyright_date; }
Genre genref() { return genre; }
bool checked_outf() { return checked_out; }
void book_out();
void book_in();
};

//exercise 6 operator overloading
ostream& operator << (ostream&, ISBN&);
ostream& operator << (ostream&, const Genre&);
ostream& operator << (ostream&, Book&);
bool operator ==(ISBN&, ISBN&);
bool operator !=(ISBN&, ISBN&);

//endBOOK CLASS——

//PATRON CLASS——
class Patron {
private:
string patron_name;
int patron_num;
bool fee_owed;
double fee_amount;
public:
Patron(string _patron_name, int _patron_num);
Patron();

string patron_namef() { return patron_name; }
int patron_numf() { return patron_num; }
bool fee_owedf() { return fee_owed; }
double fee_amountf() { return fee_amount; }

void add_fee(double _fee);
};

ostream& operator << (ostream&, Patron&);

//endPATRON CLASS——
[/code]

p340_8_book_source.cpp my book class header file’s source file

[code language=”cpp”]
#include "p340_8_my_book_class.h"

//BOOK CLASS_HELPER FUNCTIONS——

ISBN::ISBN(int _n0, int _n1, int _n2, char _x) {
n0 = _n0;
n1 = _n1;
n2 = _n2;
x = _x;
}

ISBN::ISBN() {
n0 = 0;
n1 = 0;
n2 = 0;
x = ‘0’;
}

Book::Book(ISBN _isbn, string _title, string _author, Date _copyright_date, Genre _genrebook, bool _checked_out) {
cout << "— Creating book —\n";
isbn = _isbn;
title = _title;
author = _author;
copyright_date = _copyright_date;
genre = _genrebook;
checked_out = _checked_out;
};

Book::Book() {
cout << "— Creating book —\n";
isbn = ISBN(0, 0, 0, 0);
title = "";
author = "";
copyright_date = Date();
genre = Genre();
checked_out = false;
}

void Book::book_out() {
checked_out = true;
};

void Book::book_in() {
checked_out = false;
};

ostream& operator << (ostream& os, ISBN& _isbn) {
os << _isbn.n0 << _isbn.n1 << _isbn.n2 << _isbn.x;
return os;
}

ostream& operator << (ostream& os, const Genre& _genre) {
switch (_genre) {
case Genre::biography:
os << "biography";
return os;
case Genre::children:
os << "children";
return os;
case Genre::fiction:
os << "fiction";
return os;
case Genre::nonfiction:
os << "nonfiction";
return os;
case Genre::periodical:
os << "periodical";
return os;
}
}

ostream& operator << (ostream& os, Book& _book) {
os << "ISBN: " << _book.isbnf() << "\n"
<< "Title: " << _book.titlef() << "\n"
<< "Author: " << _book.authorf() << "\n"
<< "Copyright Date: " << _book.copyright_datef() << "\n"
<< "Genre: " << _book.genref() << "\n"
<< "Checked out: " << boolalpha << _book.checked_outf() << "\n";
return os;
}

bool operator ==(ISBN& book1, ISBN& book2) {
if (book1 == book2) {
return true;
}
else {
return false;
}
}

bool operator !=(ISBN& book1, ISBN& book2) {
if (book1 != book2) {
return true;
}
else {
return false;
}
}

//endBOOK CLASS_HELPER FUNCTIONS——

//PATRON CLASS_HELPER FUNCTIONS——

Patron::Patron(string _patron_name, int _patron_num) {
cout << "— Creating Patron —\n";
patron_name = _patron_name;
patron_num = _patron_num;
fee_owed = false;
fee_amount = 0;
}

Patron::Patron() {
cout << "— Creating Patron —\n";
patron_name = "";
patron_num = 0000;
fee_owed = false;
fee_amount = 0;
}

void Patron::add_fee(double _fee) {
fee_amount += _fee;
if (fee_amount != 0) {
fee_owed = true;
}
else {
fee_owed = false;
}
}

ostream& operator << (ostream& os, Patron& _patron) {
os << "Patron Name: " << _patron.patron_namef() << "\n"
<< "Patron Number: " << _patron.patron_numf() << "\n"
<< "Fee owed: " << boolalpha << _patron.fee_owedf() << "\n"
<< "Fee owed: " << _patron.fee_amountf() << "\n";
return os;
}

//endPATRON CLASS_HELPER FUNCTIONS——
[/code]

Output:
--- Creating book ---
--- Creating Patron ---
Patron Name: Phil
Patron Number: 100
Fee owed: false
Fee owed: 0
Please enter a character to exit

Newsletter Updates

Enter your email address below to subscribe to our newsletter

Leave a Reply

Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124