I am new to OOP's. For OOP's implementation, we can use either structures or classes. My question is what to choose between them because we can implement the same concepts from both?
Asked
Active
Viewed 36 times
0
-
4Classes are the same as structs in C++, except for default visibility settings. It's a matter of style IMO. – freakish Feb 04 '22 at 07:50