Week 9 - Defining Types (Enums, Typedef, and Structs)
Learning objectives
Upon finishing this learning module, you should be able to:
- Design and write code using multidimensional arrays
- Use structs to represent heterogeneous collections of data
Schedule
Day 1
- Wrap up multidimensional arrays
- Finish CPP Lab Multidimensional arrays
Day 2
Day 3
- Structs and Arrays
- Do final assignment 9A
Day 4
Multidimensional Arrays Continued
Read Ch 8.5-8.8.1. Focus on the ideas of each program and how they use 2D arrays. Don't try to memorize the details.
This video talks through some of the interesting things in the sample programs from those sections, as well as some things that could be improved in them.
Do the CPP Lab Multidimensional Arrays if you did not already.
Structs
Read learncpp.com's struct page
These videos cover structs and introduce some concepts that are not covered in the reading. This first one should be enough to prepare you for the CPPLab.
Do Structs CPP Lab
Then watch this quick video about how to use structs across multiple files:
Structs and Arrays
This video demonstrates managing more complex data by combining structs and arrays. It will help get you ready for the last assignment.
Enums
Read about enumerations in Appendix G of the textbook. This video covers the key ideas:
Do Enums CPP Lab
Typedef & Namespaces
These are topics you should know about and recognize, but will not be using frequently. Don't worry about mastery, just make sure you understand these tools when you see them.
This video covers the core ideas:
Our book doesn't have great coverage, but you can use Learncpp.com as a reference to skim for more info: Typedef page and Namespaces page