Search⌘ K

Template Parameters

Explore the fundamental concepts of template parameters in C++. Understand the differences between type parameters, non-type parameters, and template-template parameters to create flexible and reusable code structures.

We'll cover the following...

Template Parameter

Every template is parameterized by one or more template parameters, indicated in the parameter-list of the template.

C++ supports three different kinds of template parameters

  1. Type parameter
std::vector<int>
...