CSCI 261 - Programming ConceptsSpring 2019 - Lab 8E - Cordial Godzilla vs. MechaGodzillaQuick Links: Canvas | Mines | Piazza | zyBooks |
|
| Home | Contact | Syllabus | Assignments | Schedule | Resources | | |
This lab is due by Tuesday, April 30, 2019, 11:59 PM. ConceptsFocus on expanding the Godzilla class from
Lab8D.
Suggestion: Use NotePad or WordPad
Consider using NotePad or WordPad on your computer to write your code
for this lab. Once you feel good about what you've written, then copy
the code into your project. Doing this will help you see where
you might make mistakes on the exam!
You should write a
main.cpp
that tests each feature of your class works as expected. You
will need to submit your class declaration file, your class
definition file, and your
main.cpp
file for this lab.
The Final Godzilla Class
Now add the following function to your class:
godzilla.greet( mechaGodzilla );
In order for this to work, you will need to make sure that you have marked ALL of your functions as const or not
appropriately. Which functions should be constant functions? Which parameters should be constant parameters? Do this for every
function - denote it as a const function when it is not modifying and of the callee's data members. Likewise, mark
any parameters in every function as const that are not modified within the function body.
Lab SubmissionYou will submit your solution to this lab with the rest of Set8. Detailed instructions for doing this are posted in Assignment 8. This lab is due by Tuesday, April 30, 2019, 11:59 PM. | |
Last Updated: 11/09/18 19:33
|