PPT Slide
syntax: the form of a program
semantics: the meaning of a program
/* The World of Containers */
addObject(void *anObject);
removeObject(void *anObject);
class Vehicle : Public Container
{ protected : int position, velocity;
class Train : Public Vehicle
private: int maxObtainableSpeed;
int maxNumberOfPassengers;
addPassenger(void *passenger);