Are there differences I forgot? Be notified of new C/C++ course: calcur.tech/c-cpp-newsletter 💯 FREE Courses (100+ hours) - calcur.tech/all-in-ones
@AlexanderWeurding Жыл бұрын
In C++, both classes and structs are used to define custom data types, and they share many similarities. However, there are a few key differences between them: Default member access: The default access level for members in a struct is "public", while the default for a class is "private". This means that members of a struct can be accessed directly from outside the struct, while members of a class cannot. Inheritance: A class can be inherited from another class or struct using the "class" keyword, while a struct can only be inherited from another struct. Member functions: A class can have member functions, which are functions that operate on the data members of the class. A struct can also have member functions, but they are not as commonly used. Constructors and destructors: A class can have constructors and destructors, which are special member functions that are called when an object is created or destroyed. A struct can also have constructors and destructors, but they are not as commonly used. In general, classes are used for more complex data types that require encapsulation and data abstraction, while structs are used for simpler data types that do not require as much abstraction or encapsulation. However, the choice between using a class or a struct ultimately depends on the specific needs of the program and the personal preferences of the programmer.
@pw.70 Жыл бұрын
'Preference of the programmer' - wow! Now there's a grey area!
@frankhart2188 Жыл бұрын
You forgot polymorphism i guess ;)
@uraymeiviar Жыл бұрын
there are no difference, except the mistake that c++ allow struct to have similarr feature as class, they should keep struct as POD
@JimRohn-u8c Жыл бұрын
Can you please make a beginner to advanced course on Go, because I still don’t understand, if you don’t use OOP in Go what do you use? I’m still a noob so don’t know everything. I’m used to Classes in Python.
@paullawrence72753 ай бұрын
I have a question... Are instances of a struct, value types and not reference types? Thanks!
@dastin72768 ай бұрын
Thank You. You are an excellent teacher.
@PandaXpress668 Жыл бұрын
What vscode theme is that?
@ghsewar9897 ай бұрын
Thank you so much!
@pw.70 Жыл бұрын
Isn't the primary difference by implication? Shouldn't programmers work to make structs immutable? I know this is the case with some other languages. Forgive me if I'm wrong, but I'm not a C++ developer.
@Fs-bc5fg Жыл бұрын
Amazing, thanks
@micahjacobson8533 Жыл бұрын
Why is Child able to access a without making Parent public but Grandchild can’t?