vote up 3 vote down star
3

This is just something that has bothered me for the last couple of days, I don't think it's possible to solve but I've seen template magic before.

Here goes:

To get the number of elements in a standard C++ array I could use either a macro (1), or a typesafe inline function (2):

(1)

#define sizeof_array(ARRAY) (sizeof(ARRAY)/sizeof(ARRAY[0]))

(2)

template <typename T>
size_t sizeof_array(const T& ARRAY){
    return (sizeof(ARRAY)/sizeof(ARRAY[0]));
}

As you can see, the first one has the problem of being a macro (for the moment I consider that a problem) and the other one has the problem of not being able to get the size of an array at compile time; ie I can't write:

enum ENUM{N=sizeof_array(ARRAY)};

or

BOOST_STATIC_ASSERT(sizeof_array(ARRAY)==10);// Assuming the size 10..

Does anyone know if this can be solved?

flag

2  
Possible duplicate? stackoverflow.com/questions/95500/… – Rob Sep 30 at 20:52

8 Answers

vote up 11 vote down check

Try the following from here:

template <typename T, size_t N>
char ( &_ArraySizeHelper( T (&array)[N] ))[N];
#define mycountof( array ) (sizeof( _ArraySizeHelper( array ) ))

int testarray[10];
enum { testsize = mycountof(testarray) };

void test() {
    printf("The array count is: %d\n", testsize);
}

It should print out: "The array count is: 10"

link|flag
Note -- for your two issues: #1) Macros : you do not have to use the countof() macro, you can just use sizeof(_ArraySizeHelper( array )) but the countof() macro is a simplification. #2) enums -- it works with enums in the above example – Adisak Sep 30 at 20:39
1  
+1. This has the added benefit of being typesafe (i.e., it will fail to compile if you pass a pointer instead of an array). – Josh Kelley Sep 30 at 20:43
Impressive solution. – Viktor Sehr Oct 1 at 20:39
Its a nice solution, but not completely general: "it doesn’t work with types defined inside a function" – gf Oct 21 at 5:20
@gf: Templates in general don't work so well for types defined inside a function. In fact, it doesn't work for STL -- the following won't compile under GCC: void test() { struct foo{ int a; }; std::vector<foo> b; } You're much better off using a namespace (or anonymous namespace) if you need to create a class that is only going to be used by one function and you need to use templates on that class. – Adisak Oct 21 at 16:21
vote up 6 vote down

The best I can think of is this:

template <class T, std::size_t N>
char (&sizeof_array(T (&a)[N]))[N];

// As litb noted in comments, you need this overload to handle array rvalues
// correctly (e.g. when array is a member of a struct returned from function),
// since they won't bind to non-const reference in the overload above.
template <class T, std::size_t N>
char (&sizeof_array(const T (&a)[N]))[N];

which has to be used with another sizeof:

int main()
{
    int a[10];
    int n = sizeof(sizeof_array(a));
    std::cout << n << std::endl;
}

[EDIT]

Come to think of it, I believe this is provably impossible to do in a single "function-like call" in C++03, apart from macros, and here's why.

On one hand, you will clearly need template parameter deduction to obtain size of array (either directly, or via sizeof as you do). However, template parameter deduction is only applicable to functions, and not to classes; i.e. you can have a template parameter R of type reference-to-array-of-N, where N is another template parameter, but you'll have to provide both R and N at the point of the call; if you want to deduce N from R, only a function call can do that.

On the other hand, the only way any expression involving a function call can be constant is when it's inside sizeof. Anything else (e.g. accessing a static or enum member on return value of function) still requires the function call to occur, which obviously means this won't be a constant expression.

link|flag
Remove the const to make it more generic. – dalle Sep 30 at 20:45
Thanks for the tip. It will be able to deduce T as const U if it gets a const U[N]& as an argument, right? – Pavel Minaev Sep 30 at 21:41
I like to use identity in these case, because it greatly improves readability: template<typename T, size_t N> typename identity<char[N]>::type &sizeof_array(T const(&)[N]); . For the const removal - this actually decreased genericity. Because now you cannot accept rvalue arrays anymore (non-const array reference won't bind to rvalue arrays): struct A { int b[2]; }; .. sizeof_array(A().b); // doesn't work if it's not const!. Notice that this rvalue array is not const itself, so deduction won't put const either. Note that this isn't a big issue - but arguably it's less generic i think. – Johannes Schaub - litb Sep 30 at 22:55
The rvalue array isn't const itself, but its element type is const, so why wouldn't it be deduced? As a side note, both MSVC and (more reassuringly) Comeau are able to deduce T as const int when passing const int a[10] just fine. – Pavel Minaev Sep 30 at 23:24
If the element type of an array is const, the array is const too, it propagates up (given typedef int a[10];, then a const is the same type as int const[10]) . In any case, surely with int const a[10]; sizeof_array(a); it works. But a is an lvalue, and its type is int const[a], so T is int const. In case of struct A { int b[2]; }; ... sizeof_array(getAnA().b); the passed array is an rvalue, and its type is int[2], so T is int - but non-const references won't bind to rvalues. Surely rvalue arrays are seldom, but nonetheless, genericity decreased instead of increased :) – Johannes Schaub - litb Sep 30 at 23:31
show 2 more comments
vote up 5 vote down

In C++1x constexpr will get you that:

template <typename T, size_t N>
constexpr size_t countof(T(&)[N])
{
    return N;
}
link|flag
1  
The same can be written in C++99, and in most cases the compiler will optimize away the call. – David Rodríguez - dribeas Sep 30 at 21:51
2  
But in C++98 it can't be used where a constant expression is expected – jalf Oct 1 at 0:37
vote up 4 vote down

If you are on a Microsoft only platform, you can take advantage of the _countof macro. This is a non-standard extension which will return the count of elements within an array. It's advantage over most countof style macros is that it will cause a compilation error if it's used on a non-array type.

The following works just fine (VS 2008 RTM)

static int ARRAY[5];
enum ENUM{N=_countof(ARRAY)};

But once again, it's MS specific so this may not work for you.

link|flag
_countof is implemented as a macro for C and a typesafe inline function for C++; in other words, it's identical to the question's (1) and (2). – Josh Kelley Sep 30 at 20:36
vote up 4 vote down

You can't solve it in general, thats one the reasons for array wrappers like boost array (plus stl-style behaviour of course).

link|flag
vote up 2 vote down

Without C++0x, the closest I can get is:

#include <iostream>

template <typename T>
struct count_of_type
{
};


template <typename T, unsigned N>
struct count_of_type<T[N]> 
{
    enum { value = N };
};

template <typename T, unsigned N>
unsigned count_of ( const T (&) [N] )
{
    return N;
};


int main ()
{
    std::cout << count_of_type<int[20]>::value << std::endl;
    std::cout << count_of_type<char[42]>::value << std::endl;

    // std::cout << count_of_type<char*>::value << std::endl; // compile error

    int foo[1234];

    std::cout << count_of(foo) << std::endl;

    const char* bar = "wibble";

    // std::cout << count_of( bar ) << std::endl; // compile error

    enum E1 { N = count_of_type<int[1234]>::value } ;

    return 0;
}

which either gives you a function you can pass the variable to, or a template you can pass the type too. You can't use the function for a compile time constant, but most cases you know the type, even if only as template parameter.

link|flag
With C++0x, you can use a function for a compile time constant, if you declare it constexpr - as other answers have pointed out. – Pavel Minaev Sep 30 at 21:39
Having read that post I put "Without C++0x" at the start of mine to show that I wasn't using that technique, but one which will work with current compilers. – Pete Kirkham Sep 30 at 22:01
The compile-time constant version looks a bit pointless, though. Why would you ever go through the trouble of typing count_of_type<int[20]>::value if you have to know the size is 20? :) – UncleBens Sep 30 at 22:12
You might want count_of_type<T>::value where T is a template parameter, but I agree it's liable to be rare. – Pete Kirkham Oct 1 at 7:40
vote up 1 vote down

It appears not to be possible to obtain the sizeof array as a compile-time constant without a macro with current C++ standard (you need a function to deduce the array size, but function calls are not allowed where you need a compile-time constant). [Edit: But see Minaev's brilliant solution!]

However, your template version isn't typesafe either and suffers from the same problem as the macro: it also accepts pointers and notably arrays decayed to a pointer. When it accepts a pointer, the result of sizeof(T*) / sizeof(T) cannot be meaningful.

Better:

template <typename T, size_t N>
size_t sizeof_array(T (&)[N]){
    return N;
}
link|flag
ah, didnt think about that – Viktor Sehr Sep 30 at 21:43
vote up 1 vote down

It's not exactly what you're looking for, but it's close - a snippet from winnt.h which includes some explanation of what the #$%^ it's doing:

//
// RtlpNumberOf is a function that takes a reference to an array of N Ts.
//
// typedef T array_of_T[N];
// typedef array_of_T &reference_to_array_of_T;
//
// RtlpNumberOf returns a pointer to an array of N chars.
// We could return a reference instead of a pointer but older compilers do not accept that.
//
// typedef char array_of_char[N];
// typedef array_of_char *pointer_to_array_of_char;
//
// sizeof(array_of_char) == N
// sizeof(*pointer_to_array_of_char) == N
//
// pointer_to_array_of_char RtlpNumberOf(reference_to_array_of_T);
//
// We never even call RtlpNumberOf, we just take the size of dereferencing its return type.
// We do not even implement RtlpNumberOf, we just decare it.
//
// Attempts to pass pointers instead of arrays to this macro result in compile time errors.
// That is the point.
//
extern "C++" // templates cannot be declared to have 'C' linkage
template <typename T, size_t N>
char (*RtlpNumberOf( UNALIGNED T (&)[N] ))[N];

#define RTL_NUMBER_OF_V2(A) (sizeof(*RtlpNumberOf(A)))

The RTL_NUMBER_OF_V2() macro ends up being used in the more readable ARRAYSIZE() macro.

Matthew Wilson's "Imperfect C++" book also has a discussion of the techniques that are used here.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.