Тёмный

Class vs Struct | C++ (What's the Difference?) 

Подписаться
Просмотров 10 тыс.
% 323

Start your software dev career - calcur.tech/dev-fundamentals Be notified of new C/C++ course: calcur.tech/c-cpp-newsletter
💯 FREE Courses (100+ hours) - calcur.tech/all-in-ones
⚛️ FREE React Course (20 hours) - calcur.tech/free-react-course
✅ Data Structures & Algorithms - calcur.tech/dsa-youtube
~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~
✉️ Newsletter - calcur.tech/newsletter
📸 Instagram - CalebCurry
🐦 Twitter - calebCurry
🔗 LinkedIn - www.linkedin.com/in/calebcurry
▶️ Subscribe - calcur.tech/subscribe
👨🏻‍🎓 Courses - www.codebreakthrough.com
~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~
↪ My Amazon Store - www.amazon.com/shop/calebcurry
🅿 Patreon - calcur.tech/patreon-calebcurry
🅖 GitHub Sponsors - github.com/sponsors/CalebCurry
Ⓟ Paypal - paypal.me/calcur

Наука

Опубликовано:

 

10 апр 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 12   
@codebreakthrough
@codebreakthrough Год назад
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
@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
@pw.70 11 месяцев назад
'Preference of the programmer' - wow! Now there's a grey area!
@frankhart2188
@frankhart2188 9 месяцев назад
You forgot polymorphism i guess ;)
@uraymeiviar
@uraymeiviar Год назад
there are no difference, except the mistake that c++ allow struct to have similarr feature as class, they should keep struct as POD
@joshi1q2w3e
@joshi1q2w3e 10 месяцев назад
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.
@ghsewar989
@ghsewar989 2 месяца назад
Thank you so much!
@dastin7276
@dastin7276 3 месяца назад
Thank You. You are an excellent teacher.
@Fs-bc5fg
@Fs-bc5fg Год назад
Amazing, thanks
@PandaXpress668
@PandaXpress668 7 месяцев назад
What vscode theme is that?
@pw.70
@pw.70 11 месяцев назад
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.
@micahjacobson8533
@micahjacobson8533 8 месяцев назад
Why is Child able to access a without making Parent public but Grandchild can’t?