Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Review

  • STL Basics
  • Classes, constructors. Creating objects on the stack. Repeating: how the stack works, limitations
  • Copying objects
  • Copy constructor, assignment operator
  • Destructor

New

Inheritance Exercise:

Create a multiple inherited Class Driver as follows:

  • Driver (license), which inherits from Person (name, family name) and Worker (TAX Number)
  • Create the Constructors with arguments for Driver
  • Create the destructor method for Driver