Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

CPP4 - Templates & other C++ topics

functiontemplate.cpp

Video Examples of function templates in C++

Note that in the video the filename was called template.cpp.

template.cpp

Video Introduction to templates in C++

Note that the template in this file has 2 type parameters, but the video example starts with one type parameter and builds to 2.

friend.cpp

Video Example of the friend modifier for classes & methods. The example is in the context of a simple linked-list implementation.

readfile.cpp

Example of reading a file & parsing a string in C++. This program is equivalent to readfile.c.

explicit.cpp

Video Demonstration of the explicit modifier

variadic.cpp

Video Example of variadic template