- In the Class Browser, select the Object class.
- Select the Classes | Add... command.
The Define Class dialog is displayed.
- Enter Book as the name.
- Select library as the map file.
- Click the OK button. The Class Browser displays the new Book class.

Real vs Abstract
A real class, unlike an abstract class, can be instantiated
(objects of the class can be created).
Abstract classes define common properties and
methods that are inherited by real subclasses.
Persistent vs Transient
Persistent objects, unlike transient objects, are stored in the database.
Transient objects are stored in memory until deleted. |
 |