Classes and Structs
Comparison between classes and structs
Class | Struct |
---|---|
Value type contains reference to object created in memory on heap | Data type present on stack |
Can be sub-classed | Can’t be subclassed |
No default initialiser? | Default initialiser created with all fields as parameters |
Contain identifier information in header and consume more memory | Light weight as it doesn’t contain any other information |