Computer Science : Using Functional Decomposition

Study concepts, example questions & explanations for Computer Science

varsity tutors app store varsity tutors android store

Example Questions

Example Question #301 : Computer Science

Given a class Thing and the code:

    Thing thingOne, thingTwo;

What function call is the following equivalent to?

    thingTwo = thingOne;

Possible Answers:

operator=(thingTwo, thingOne);

None of the above

thingTwo.operator = (thingOne);

ostream& Thing::operator=(const Thing& rhs);

thingOne uses the copy constructor of thingTwo

Correct answer:

thingTwo.operator = (thingOne);

Explanation:

What's given to us is that thingOne and thingTwo have already been created, this is a vital piece of information. Let's go through each of the choices

operator=(thingTwo, thingOne);

This line of code makes no sense and is syntactically wrong.

 

ostream& Thing::operator=(const Thing& rhs);

This line of code says to access the "operator=" method from the "Thing" class and put it onto the ostream, this has nothing to do with assigning thingOne to thingTwo.

When we come across the choice of the copy constructor, we have to keep in mind that the copy constructor is only used when an object use to to create another one, for example we have a given class called Foo:

Foo foo;

Foo foobar = foo;

In this case, we are using foo to create foobar.

 

The only choice that works is:

thingTwo.operator=(thingOne);

This line of code means that the thingOne object is being assigned to thingTwo.

 

Learning Tools by Varsity Tutors