I've a noob problem with C++.
I've a class Book:
class Book {
public:
string name;
Author author;
double price;
int qtyInStock;
public:
Book(const string & name,
const Author & author,
double price,
int qtyInStock = 0);
string getName() const;
Author getAuthor() const;
double getPrice() const;
void setPrice(double price);
int getQtyInStock() const;
void setQtyInStock(int qtyInStock);
void print() const;
string getAuthorName() const;
};
with the constructor:
Book::Book(
const string & name,
const Author & author,
double price,
int qtyInStock)
: name(name), author(author)
{ // Init object reference in member initializer list
// Call setters to validate price and qtyInStock
setPrice(price);
setQtyInStock(qtyInStock);
}
Now i wanto to create a new class that derive from it "BookDigital",written below:
class DigitalBook:public Book
{
public:
string site;
DigitalBook(const string & name,
const Author & author,
double price,
int qtyInStock = 0,
string & site);
};
With Constructor:
DigitalBook:DigitalBook(
const string & name,
const Author & author,
double price, int qtyInStock,
string & site)
: name(name), author(author) { // Init object reference in member initializer list
// Call setters to validate price and qtyInStock
setPrice(price);
setQtyInStock(qtyInStock);
}
I've add a member "site" for a digital book
When I compile this, it shows the message error:
||=== Build: Debug in Test C++ (compiler: GNU GCC Compiler) ===|
C:\Users\aalovisi\Desktop\Test C++\Book.h|34|error: default argument missing for parameter 5 of 'DigitalBook::DigitalBook(const string&, const Author&, double, int, std::string&)'|
C:\Users\aalovisi\Desktop\Test C++\Book.cpp|14|error: found ':' in nested-name-specifier, expected '::'|
C:\Users\aalovisi\Desktop\Test C++\Book.cpp||In constructor 'DigitalBook::DigitalBook(const string&, const Author&, double, int, std::string&)':|
C:\Users\aalovisi\Desktop\Test C++\Book.cpp|15|error: class 'DigitalBook' does not have any field named 'name'|
C:\Users\aalovisi\Desktop\Test C++\Book.cpp|15|error: class 'DigitalBook' does not have any field named 'author'|
C:\Users\aalovisi\Desktop\Test C++\Book.cpp|15|error: no matching function for call to 'Book::Book()'|
C:\Users\aalovisi\Desktop\Test C++\Book.cpp|15|note: candidates are:|
C:\Users\aalovisi\Desktop\Test C++\Book.cpp|7|note: Book::Book(const string&, const Author&, double, int)|
C:\Users\aalovisi\Desktop\Test C++\Book.cpp|7|note: candidate expects 4 arguments, 0 provided|
C:\Users\aalovisi\Desktop\Test C++\Book.h|8|note: Book::Book(const Book&)|
C:\Users\aalovisi\Desktop\Test C++\Book.h|8|note: candidate expects 1 argument, 0 provided|
||=== Build failed: 5 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
Why?Thank you for help
If a function has default value for some parameter then all other parameters that go further should have default value too. This is what the compiler is trying to tell you in its first message.