15
votes
What are the differences between struct and class in C++
Class' members are private by default. Struct's members are public by default. Besides that there are no other differences. Also see …
2
votes
C++ class initialisation containing class variable initialisation
Because, in the constructor's body ("within the curly brackets") the member variables are already default-constructed. That may have some performance implications, when you have a member variable o …
