Answered step by step
Verified Expert Solution
Question
1 Approved Answer
bool Inventory::isFull() const { // @todo implement this function // // If this is more than one line // in the form return (boolean expression);
bool Inventory::isFull() const { // @todo implement this function // // If this is more than one line // in the form "return (boolean expression);" // you are overthinking the problem return true; // This line is a placeholder. Remove it. }
i wrote this code
bool status; if (occupied == slots ) {status = true;
else { status = false; }
return status; // This line is a placeholder. Remove it.
when I compile it I got this error
: error: invalid use of member function 'bool Inventory::isFull() const'
(did you forget the '()' ?) {this->isFull->data)
^
do you have any suggestion to me?
I tried to compile the code using linux server.
hint:
The question Am I using all available slots? is an alternative phrasing of Is this Inventory full?
I will leave adding a return and a ; up to you!
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started