Structures

View Code

Types

Basic Types
variables types that only have one section of memory dedicated to it
Simple Types
a basic type that's memory is totally dedicated to a numeric value
Complex type
a basic type that's memory is has different sections for different values
Structure Types
types that are made of basic types and/or structured types
Memory Type
a type that involved memory locations of other types

User Define Types

Enumeration
a simple type which defines a set of variables to have integer values
Simple Structure
a type which has a set of various data members, which are often accessible with the dot notation
Class
a complex structure which has a state, i.e. data members, which often cannot be accessed and member functions, which are often accessed with the dot notation
Object
an instance of a class

Prev -- Back to Portal -- Next