Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 873 Bytes

README.md

File metadata and controls

32 lines (25 loc) · 873 Bytes

cpp

42/Codam C++ crash course

Description

A C++ bootcamp and introduction to Object Oriented Programming

Topics covered include:

  • Classes and objects
  • References and pointers
  • Inheritance
  • Abstraction
  • Encapsulation
  • Interfaces
  • Ad-hoc polymorphism
  • Subtype polymorphism
  • Overloading
  • Exception Handling
  • Casting
  • Function and class templates
  • File streams
  • Standard Template Library (STL)

Resources

C++ reference

C++ tutorials

In-depth information on C++

Const correctness and East const style

Handout on Copy Constructors and Assignment Operators from Stanford