+ 1
How to design a class in c++
Design of class
2 Answers
+ 4
Class design is not primarily a matter of language.
1. Determine its purpose
2. Derive the required pattern and basic class characteristics for this purpose
3. Define the required fields
4. Implement the required constructors
5. Implement the required methods
+ 1
Thanks meyer