Similar to primitive data types, objects that need to be unmodifiable
can be
defined as constant objects. The const keyword
may be used to
accomplish this, e.g.
class employee{
public:
// Members of the class go in here.
};
const employee Jake; // Defined employee object as an unmodifiable object