difference between the keywords struct and class?
Related Blog Items
- Cross Casts
- UTF8 To Unicode conversion program
- Constant and Volatile
- Structure padding explained
- C/C++ Questions asked in various job interviews
The members and base classes of a struct are public by default, while in class, they default to private. Note: you should make your base classes explicitly public, private, or protected, rather than relying on the defaults.
struct and class are otherwise functionally equivalent.
OK, enough of that squeaky clean techno talk. Emotionally, most developers make a strong distinction between a class and a struct. A struct simply feels like an open pile of bits with very little in the way of encapsulation or functionality. A class feels like a living and responsible member of society with intelligent services, a strong encapsulation barrier, and a well defined interface. Since that’s the connotation most people already have, you should probably use the struct keyword if you have a class that has very few methods and has public data (such things do exist in well designed systems!), but otherwise you should probably use the class keyword.
source: USENET
[tags]strcut and class[/tags]
Popularity: 3%
You need to log on to convert this article into PDF
Related Blog Items - Cross Casts
- UTF8 To Unicode conversion program
- Constant and Volatile
- Structure padding explained
- C/C++ Questions asked in various job interviews
Related Blog Items
- Cross Casts
- UTF8 To Unicode conversion program
- Constant and Volatile
- Structure padding explained
- C/C++ Questions asked in various job interviews
No Comments
No comments yet.