Suppose you are debugging a C++ program and need to know what is the type which the compiler deduces for a certain expression. There are many complicated ways of doing this, but in this post, I will show you a very simple trick which allows you to determine types directly at compile time.
The trick is this: declare a class template but do not define it, then attempt to instantiate this class template with the expression whose type you are trying to determine. Here is an example:
/* class template declaration (no definition available) */ template<typename T> class ShowType; int main() { signed int x = 1; unsigned int y = 2; /* (signed int) + (unsigned int): what is the resulting type? */ ShowType<decltype(x + y)> dummy; return 0; }
In the code above, we are trying to determine the type deduced by the compiler when we add a signed int (x) and an unsigned int (y). This type is decltype(x + y). When the compiler attempts to create an instance of ShowType<decltype(x + y)>, it realizes this is not possible and indicates the problem with a very helpful error message:
error: aggregate ‘ShowType<unsigned int> dummy’ has incomplete type and cannot
be defined
In this message, the compiler (in my case, gcc) is telling us that it tried to create an instance of ShowType<unsigned int> but failed at it. Therefore, the type of the expression x + y is decltype(x + y) = unsigned int. This ŕesulting type comes directly from the integer addition rules specified in the C++ language.
Let's try a more interesting example. In C++, the type deduction rules for template parameters are complex. When in doubt, you can use the trick above to determine which type is deduced by the compiler for a certain template parameter:
/* class template declaration (no definition available) */ template<typename T> class ShowType; template<typename T> void my_function(T x) { ShowType<T> dummy; /* do something with x */ } int main() { const int x = 3; my_function(x); return 0; }
One common doubt which developers often have regarding the type T on my_function is: will it be deduced to be int or const int? As it turns out, since we are passing x by value, the compiler will deduce T to be int:
error: ‘ShowType<int> dummy’ has incomplete type
As a final example, let's consider auto. The rules for auto type deduction are usually the same as the ones for template types, but auto type deduction assumes that initializing expressions such as {1,2,3} represent initializer lists. Let's show that in practice:
#include <initializer_list> template<typename T> class ShowType; int main() { auto x = {1,2,3}; ShowType<decltype(x)> dummy; return 0; }
The error message tells us what we expect:
error: aggregate ‘ShowType<std::initializer_list<int>> dummy’ has incomplete
type and cannot be defined
Notice that we need to pass an actual type (not an expression) to ShowType<T>, so in the examples above in which we wanted to determine the type of a certain expression (e.g. x + y), we needed to enclose the expression with decltype. On the second example, we already had the desired type T available on the definition of my_function, so we could use it directly.
Comments
No comments posted yet.