-
Book Overview & Buying
-
Table Of Contents
The C++ Programmer's Mindset
By :
It is important to keep one eye on the bigger picture when solving problems. It can be easy to get stuck into the details and forget that the pieces must fit together. We will go back over each of the components and construct the final solution in Chapter 12 and reflect on the whole process. (Reflecting on the problems that you have solved is an important part of the learning process.) The general flow of the corresponding internal components that we need to develop over the next few chapters is shown in Figure 7.1. Understanding the flow of the final program allows us to structure our efforts and how we might want to group the work into manageable packets.

Figure 7.1: The program workflow and the corresponding components that must be developed to solve the client’s brief
One thing we need to think about before we start is what the rough process of the application will be. A good way to do this is to think about what the main function...