There are two uses for the template
and typename
keywords in C++. One of them is fairly well known amongst programmers: to define templates. The other use is more obscure: to specify that an expression refers to a template function or a type. This regularly trips up programmers that use the Eigen library, often leading to error messages from the compiler that are difficult to understand, such as "expected expression" or "no match for operator<".
The template
and typename
keywords are routinely used to define templates. This is not the topic of this page as we assume that the reader is aware of this (otherwise consult a C++ book). The following example should illustrate this use of the template
keyword.
We could just as well have written template <class T>
; the keywords typename
and class
have the same meaning in this context.
Let us illustrate the second use of the template
keyword with an example. Suppose we want to write a function which copies all entries in the upper triangular part of a matrix into another matrix, while keeping the lower triangular part unchanged. A straightforward implementation would be as follows:
Example: | Output: |
---|---|
#include <Eigen/Dense>
#include <iostream>
using Eigen::MatrixXf;
{
dst.triangularView<Eigen::Upper>() = src.triangularView<Eigen::Upper>();
}
int main()
{
std::cout << "m2 before copy:" << std::endl;
std::cout << m2 << std::endl << std::endl;
std::cout << "m2 after copy:" << std::endl;
std::cout << m2 << std::endl << std::endl;
}
void copyUpperTriangularPart(Eigen::MatrixBase< Derived1 > &dst, const Eigen::MatrixBase< Derived2 > &src) Definition: TemplateKeyword_flexible.cpp:5 MatrixType m2(n_dims) Matrix< float, Dynamic, Dynamic > MatrixXf Dynamic×Dynamic matrix of type float. Definition: Matrix.h:501 | m2 before copy: 0.68 0.823 -0.444 -0.27 -0.211 -0.605 0.108 0.0268 0.566 -0.33 -0.0452 0.904 0.597 0.536 0.258 0.832 m2 after copy: 1 1 1 1 -0.211 1 1 1 0.566 -0.33 1 1 0.597 0.536 0.258 1 |
That works fine, but it is not very flexible. First, it only works with dynamic-size matrices of single-precision floats; the function copyUpperTriangularPart()
does not accept static-size matrices or matrices with double-precision numbers. Second, if you use an expression such as mat.topLeftCorner(3,3)
as the parameter src
, then this is copied into a temporary variable of type MatrixXf; this copy can be avoided.
As explained in Writing Functions Taking Eigen Types as Parameters, both issues can be resolved by making copyUpperTriangularPart()
accept any object of type MatrixBase. This leads to the following code:
Example: | Output: |
---|---|
#include <Eigen/Dense>
#include <iostream>
template <typename Derived1, typename Derived2>
void copyUpperTriangularPart(Eigen::MatrixBase<Derived1>& dst, const Eigen::MatrixBase<Derived2>& src)
{
/* Note the 'template' keywords in the following line! */
dst.template triangularView<Eigen::Upper>() = src.template triangularView<Eigen::Upper>();
}
int main()
{
std::cout << "m2 before copy:" << std::endl;
std::cout << m2 << std::endl << std::endl;
std::cout << "m2 after copy:" << std::endl;
std::cout << m2 << std::endl << std::endl;
}
Base class for all dense matrices, vectors, and expressions. Definition: MatrixBase.h:52 | m2 before copy: 7 9 -5 -3 -2 -6 1 0 6 -3 0 9 6 6 3 9 m2 after copy: 1 1 1 1 -2 1 1 1 6 -3 1 1 6 6 3 1 |
The one line in the body of the function copyUpperTriangularPart()
shows the second, more obscure use of the template
keyword in C++. Even though it may look strange, the template
keywords are necessary according to the standard. Without it, the compiler may reject the code with an error message like "no match
for operator<".
The reason that the template
keyword is necessary in the last example has to do with the rules for how templates are supposed to be compiled in C++. The compiler has to check the code for correct syntax at the point where the template is defined, without knowing the actual value of the template arguments (Derived1
and Derived2
in the example). That means that the compiler cannot know that dst.triangularView
is a member template and that the following < symbol is part of the delimiter for the template parameter. Another possibility would be that dst.triangularView
is a member variable with the < symbol referring to the operator<()
function. In fact, the compiler should choose the second possibility, according to the standard. If dst.triangularView
is a member template (as in our case), the programmer should specify this explicitly with the template
keyword and write dst.template triangularView
.
The precise rules are rather complicated, but ignoring some subtleties we can summarize them as follows:
dst
is a dependent name because it is of type MatrixBase<Derived1>
which depends on the template parameter Derived1
.xxx.yyy
or xxx->yyy
and xxx
is a dependent name and yyy
refers to a member template, then the template
keyword must be used before yyy
, leading to xxx.template yyy
or xxx->template yyy
.xxx::yyy
and xxx
is a dependent name and yyy
refers to a member typedef, then the typename
keyword must be used before the whole construct, leading to typename xxx::yyy
.As an example where the typename
keyword is required, consider the following code in Sparse matrix manipulations for iterating over the non-zero entries of a sparse matrix type:
If SparseMatrixType
depends on a template parameter, then the typename
keyword is required:
For more information and a fuller explanation of this topic, the reader may consult the following sources: