Site icon Learn C++

Learn What Is A Variable Template in C++

Learn What Is A Variable Template 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. In this article, we will explain Variable Template in C++ examples that can be used by a professional C++ Code Editor and compiler that supports C++14, C++17, and over. 

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

What is a 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 and let the user may apply the same template on different types in those template operations. Templates are like macros in C++, considered in compilation except compiler checks types used before the template is expanded in its terms. 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.

Templates are powerful entity that can be parameterized by one or more parameters. These parameters can be type template parameters, non-type template parameters, and template template parameters (parameters which are themselves templates).

What is a variable template in C++?

A variable template is used to define a family of variables or static data members. If a static data member instantiated from a static data member template, it is called as an instantiated static data member. Note that, a variable template can be introduced by a template declaration at namespace scope, where variable-declaration declares a variable.

Syntax of a Variable Template;

[crayon-66380d5a47e27221016679/]

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

Here is a simple variable template example that is used to define standard gravity value.

[crayon-66380d5a47e2f018304608/]

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

Now, let’s use this in a template. We can define a force template (force = mass x gravity) as below,

[crayon-66380d5a47e31212116125/]

here gravity<T> is a variable template instantiation

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

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

[crayon-66380d5a47e33485303567/]

What is wrong when using a variable template in C++?

When using a variable template be sure about declared variable type, otherwise you may have wrong results or missing data. Here is the example below, it shows why you cannot use int type as an input to declare f5, f6 integer variables as below.

[crayon-66380d5a47e37881156930/]

and the output will be as follows,

[crayon-66380d5a47e3a252362544/]

as you see f5 and f6 are the wrong values here, these options doesn’t help to get correct data from this variable template. Because our template type looks the type of the input variable that we use, so it should be float or double to use its precision side.

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

Exit mobile version