How to use the Github to track my study of C++ Primer, here are some principles:
-
Every week you should have a ToDoList first, which lists the tasks you are to complete within this week:
- Write down a ToDoList at the beginning of the week;
- Check if you complete the daily tasks at the end of every day, and here is the example:
- Task done
- which is not
- Make a summary after a week.
-
After a chapter's study, you should write a summary about what you have learnt in this chapter. Here is the format:
- Key points
- Key point 1: definition
- Example 1 (always the code), like this
public int Max(int a, int b) { if(a > b) return a; return b; }
- Example 2
- Key point 2
- ...
- Key point 1: definition
- New Knowledge Points (or new features)
- same as above
- ...
- Tips ...
- Key points
-
All the source files of every chapter should be stored in the CH_x files folders, respectively.