C++ Crash Course: Solution to Exercises in Chapter 4.
My solutions to the exercises at the end of Chapter 4 in Part 1 of C++ Crash Course. In this series of exercises, you will make use of a Copy Constructor, Copy Assignment Operator, Move Constructor, and a Move Assignment Operator. Pay close attention to the differences in the elapsed times of Timer 1 and Timer 2. Pay close attention to the fact that when Timer 2 is destroyed, its name will be Timer 1 because of the Copy Constructor, where you will copy Timer 1's name to Timer 2, as well as the time stamp. You will also notice that there is never an indication that Timer 3 is destroyed, but keep in mind we are moving Timer 4 to Timer 3. Therefore, when Timer 4 is destroyed, that is really Timer 3, but after having Timer 4's name moved into its name field. A little bit confusing if you try to breeze through it, but pay close attention to each line of the program, and you will understand exactly what is happening in this exercise. Github: https://github.com/pereiradaniel/CPP_CRASH...