Question: 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!