Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

##Today's content

  • Classes, constructors. Creating objects on the stack. Repeating: how the stack works, limitations
  • Storing user objects in STL containers
  • Copying objects
  • Copy constructor, assignment operator
  • destructor
  • new/delete, dynamic memory allocation
  • RAII
  • Copying objects in S

This class was based on this tutorial

Short Exercise:

Create a Class Person with Name and family name and year of birth; Read the information from the user; Print out a summary with the age (based on year 2019)