|
not much to add to what "joe_bruin" said about it.
In C++ struct and class are all the same.
different name for the same thing.
However if/when you go to C#.NET there is a difference. structs- value types class-reference type
so in C# there is difference when you use structs or classes for your data encapsulation.
|