Lab 9: Templates in C++
Instructions
-
First read this page then start working on lab with the GitHub classroom link below.
-
Use the code in the GitHub repository for this lab.
-
Github Classroom Link: https://classroom.github.com/a/QNslZBCW
Objective
Develop an understanding of C++ templates, focusing on their application for code reusability and flexibility.
Exercise 1: Swap Function Template
Create a generic swap function using C++ templates that can interchange the values of two variables of any data type.
Put your code for this exercise in the swap.cpp
file in the Exercise1
folder in your GitHub repository.
- Create a function template called
swapValues
that can interchange the values of two variables of any data type. - The function should be able to handle different data types (e.g., int, float, double) for the the values to be swapped.
- Update the
main
function inswap.cpp
to demonstrate the usage of theswapValues
function for different data types. - In the
README.md
file in your GitHub repository. Write a few sentences describing how you used a C++ template to create a genericswapValues
function.
Exercise 2: Area Function Templates
Create function templates to calculate the area of different geometric shapes.
Put your code for this exercise in the area.cpp
file in the Exercise2
folder in your GitHub repository.
- Create three function templates that can calculate the area of different geometric shapes :
calculateAreaSquare
,calculateAreaRectangle
, andcalculateAreaCircle
. - The function should be able to handle different data types (e.g., int, float, double) for the dimensions of the shapes.
- Update the
main
function inarea.cpp
to demonstrate the usage of the calculateArea functions for different shapes and data types. - In the
README.md
file in your GitHub repository. Write a few sentences describing how you used a C++ template to create generic calculateArea functions.
Exercise 3: Vector Class Template
Implement a generic vector class in C++ using templates, providing a simplified version of the functionality offered by std::vector.
Put your code for this exercise in the Exercise3
folder in your GitHub repository.
- Write a template class GenericVector with a template parameter for the element type.
- Put this implementation into the files
GenericVector.h
andGenericVector.cpp
- Use the non-generic versions
IntVector.h
andIntVector.cpp
files to help guide your coding. - Update the
main
function inmain.cpp
to demonstrate the usage ofGenericVector
for different data types. Don’t forget to addGenericVector.h
tomain.cpp
. - Modify the
Makefile
so thatGenericVector.h
andGenericVector.cpp
are included when building themain
target. - In the
README.md
file in your GitHub repository. Write a few sentences describing how you used a C++ template to create generic vector class declaration and implementation.