Understanding Template Terminology
We'll cover the following...
We'll cover the following...
Types of templates
So far in this section, we have used the general term templates. However, there are four different terms describing the kind of templates we have written:
- Function template is the term used for a templated function. An example is the - maxtemplate seen previously.
- Class template is the term used for a templated class (which can be defined either with the - class,- struct, or- unionkeyword). An example is the- vectorclass we wrote in the previous lesson.
- Variable template is the term used for templated variables, such as the - NewLinetemplate from the previous section.
- ...