C++C++17Learn C++SyntaxTemplates

Learn What Is Template Instantiation in C++

One of the great features of modern C++ is templates. A template is a simple and very powerful statement in C++ that defines the operations of a class or function, and Template Instantiation is to create a new definition of a function, class, or member of a class from a template declaration with template argument types. In this article, we will explain Template Instantiation in C++ examples which can be used by a professional C++ IDE and compiler. 

First of all, let’s try to explain what template in C++ is.

What Is template in C++?

template is a very powerful statement in C++ that simply defines the operations of a class, a function, an alias, or a variable. It lets the user apply the same template on different variable types in those template operations. Templates are like macros in C++, considered in compilation except the compiler checks the types used before the template is expanded. In the compilation mechanism of a template in C++, the source code contains only a template for a function or class, but when it is compiled, the same template can be used on multiple data types.


For example, here is a function template that adds two a and b parameters defined as type T:

for example, if a and b are int variables, this template can be used as below

and in the next lines same template can be used for the x and y float variables as below too,

Templates are a powerful entity that can be parameterized by one or more template parameters. These parameters can be a type template parameter, a non-type template parameter, or a template as a template parameter.

What Is template instantiation in C++?

Template Instantiation is to create a new definition of a function, class, or member of a class from a template declaration with template argument types. For example, a class template is not a type or an object, or any other entity, this does not generate a code from a source file that contains only a template definition. When instantiated, the code of a template appears.

When we define a template class where it will work with a couple of explicit types, we declare the template in the header file like a normal class declaration. We put template definitions in a source file as in normal class definitions. Then we explicitly instantiate only the version of our template that we want.

Syntax of a definition an explicit Instantiation of a template:

Syntax of a declaration of an explicit instantiation of a template:

Note that here the extern keyword in the specialization is applied to the member functions defined outside of the body of the class. Functions which are defined inside the class declaration are considered as inline functions and they are instantiated.

For example, if you want to define a template that has 20 integer variables – for example ages – you can declare ages like this:

Template instantiation can be done in two different ways:

  • Explicit instantiation
  • Implicit instantiation

Where is a simple template instantiation example in C++?

Here is a simple class template explicit instantiation example in C++.

Is there a full template instantiation example in C++?

Here is an example of a class template and template instantiation of this class template,

Learn What Is Template Instantiation in C++ the C++ Builder Logo

C++ Builder is the easiest and fastest C and C++ IDE for building simple or professional applications on the Windows, MacOS, iOS & Android operating systems. It is also easy for beginners to learn with its wide range of samples, tutorials, help files, and LSP support for code. RAD Studio’s C++ Builder version comes with the award-winning VCL framework for high-performance native Windows apps and the powerful FireMonkey (FMX) framework for cross-platform UIs.

There is a free C++ Builder Community Edition for students, beginners, and startups; it can be downloaded from here. For professional developers, there are Professional, Architect, or Enterprise versions of C++ Builder and there is a trial version you can download from here

Oh hi there 👋
It’s nice to meet you.

Sign up to receive awesome C++ content in your inbox, every day.

We don’t spam! Read our privacy policy for more info.


Reduce development time and get to market faster with RAD Studio, Delphi, or C++Builder.
Design. Code. Compile. Deploy.
Start Free Trial

Free C++Builder Community Edition

About author

Dr. Yilmaz Yoru has 35+ years of coding with more than 30+ programming languages, mostly C++ on Windows, Android, Mac-OS, iOS, Linux, and some other operating systems. He graduated and received his MSc and PhD degrees from the Department of Mechanical Engineering of Eskisehir Osmangazi University. He is the founder and CEO of ESENJA LLC Company. His interests are Programming, Thermodynamics, Fluid Mechanics, Artificial Intelligence, 2D & 3D Designs, and high-end innovations.
Related posts
C++C++11C++14C++17C++20

What Is The Stack (std::stack) In Modern C++?

C++C++11C++14C++17C++20Learn C++

What Is The Queue (std::queue) In Modern C++?

C++C++11C++14C++17Learn C++SyntaxTemplates

What Are The Logical Operation Metafunctions In Modern C++?

C++C++14C++17C++20Learn C++

What Are The Deprecated C++14 Features In C++17?