How Can Objects Help Me?
While the uses of objects are virtually limitless, there are several common problems which they solve.
- They can be used to easily save and restore complex configuration data such as preferences.
- They can drastically reduce the use of process and interprocess variables by allowing you to place related data in one object instead of numerous variables.
- They can be used to save and restore entire records with one call.
- They can be used to store hierarchically structured data.
- They can facilitate an object-oriented style of programming.

