Class Templates
In this lesson, we'll learn about class templates.
We'll cover the following...
A class template defines a family of classes.
Syntax #
template < parameter-list >
class-declaration
Explanation #
parameter-list: A non-empty comma-separated list of the template parameters, each of which is either a non-type parameter, a type parameter, a template parameter, or a mixture of any of those.
...