Type or Class Operators

Operators that work with objects

These operators return references to members of objects, given an object or 
its memory address.

Operator . (Member Access)
   Returns a reference to a member.
Operator -> (Pointer To Member Access)
   Returns a reference to a member from a pointer.
Operator Is (Run-Time Type Information)
   Checks whether an object is compatible to a type derived from its 
   runtime-type.

