Bjarne Stroustrup “Programming Principles and Practice Using C++”
Chapter 9 Exercise 5
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
p339_5_book_main.cpp my main cpp file
p339_5_my_book_class.h my book class header file
p339_5_book_source.cpp my book class header file’s source file
p339_5_book_main.cpp my main cpp file
[code language=”cpp”]
// Philipp Siedler
// Bjarne Stroustrup’s PPP
// Chapter 9 Exercise 5
#include "p339_5_my_book_class.h"
using namespace Chrono;
int main()
try
{
Book myBook(ISBN(), "book1", "author1", Date(2000, Date::jul, 5), false);
keep_window_open();
}
catch (runtime_error e) {
cout << e.what() << endl;
keep_window_open();
}
catch (…) {
cout << "Exiting" << endl;
keep_window_open();
}
[/code]
p339_5_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();
};
class Book {
private:
ISBN isbn;
string title;
string author;
Date copyright_date;
bool checked_out;
public:
Book(ISBN _isbn, string _title, string _author, Date _copyright_date, bool _checked_out);
Book();
ISBN isbnf() { return isbn; }
string titlef() { return title; }
string authorf() { return author; }
Date copyright_datef() { return copyright_date; }
bool checked_outf() { return checked_out; }
void book_out();
void book_in();
};
//endBOOK CLASS——
[/code]
p339_5_book_source.cpp my book class header file’s source file
[code language=”cpp”]
#include "p339_5_my_book_class.h"
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, bool _checked_out) {
cout << "Creating book\n";
isbn = _isbn;
title = _title;
author = _author;
copyright_date = _copyright_date;
checked_out = _checked_out;
};
Book::Book() {
cout << "Creating book\n";
isbn = ISBN();
title = "noTitle";
author = "noAuthor";
copyright_date = Date();
checked_out = false;
}
void Book::book_out() {
checked_out = true;
};
void Book::book_in() {
checked_out = false;
};
[/code]
Output: Creating book Please enter a character to exit