The following code returns the size of a stack-allocated array:
template<typename T, int size>
int siz(T (&) [size])
{
return size;
}
but I can't wrap my head around the syntax.
Especially the T (&) [size] part...
That part is a reference to an array. There is the "right-left rule" for deciphering any C and C++ declarations. Because function templates deduce template argument types from the supplied function arguments what this function template does is deduce the type and element count of an array and return the count. Functions can't accept array types by value, rather only by pointer or reference. The reference is used to avoid the implicit conversion of an array to the pointer to its first element (aka, array decay):
Array decay destroys the original type of the array and hence the size of it gets lost. Note, that because it is a function call in C++03 the return value is not a compile time constant (i.e. the return value can't be used as a template argument). In C++11 the function can be marked with
To get the array element count as a compile time constant in C++03 a slightly different form may be used:
In the above it declares a function template with the same reference-to-an-array argument, but with the return value type of The old C/C++ way of getting the element count of an array as a compile time constant is:
|
|||||||||||||||
|
|
This program fails to compile with:
because The parenthesis are required to disambiguate here because Normally if the parameter wasn't anonymous you would write:
To give the array the name |
||||
|
|
|
It´s an function which becomes a typename (templates can be used with different typenames) and a size from the outside. It then returns this size. Stack functions often use |
||||
|
|
alias<T[size]> &which may be easier to read. – Johannes Schaub - litb Nov 26 '11 at 17:12