求傳入函式中的陣列長度
摘自:http://blog.chinaunix.net/u2/75321/showart_1161698.html
一般來說陣列傳入函式裡面後會退化為指標,sizeof則沒有用了,所以一般都要多傳入一個數組長度。但是還是有辦法求長度的。
下面三個方法的原理都是利用array-size函式把陣列的長度騙取出來,而且利用&號過濾
指標.
template <int N>
struct size{
static const int cnt = N;
};
template <typename T, int N>
size <N> array_size(T (&a)[N]);
#define dimensionof(x) array_size(x).cnt
typedef unsigned char byte_t;
template <int N>
struct size_v1{
byte_t c[N];
};
template <typename T, int N>
size <N> array_size_v1(T (&a)[N]);
#define dimensionof_v1(x) sizeof(array_size(x).c)
template <typename T, int N>
byte_t (&dimen(T (&a)[N]) )[N];
#define dimmensionof_v2(x) sizeof(dimen(x))
更簡單的實現
template <int N>
struct SIZE{
static const int cnt = N;
};
template <typename T, int N>
int arr_size(T (&arr)[N]){
/*
cout << sizeof(arr) / sizeof(T) << endl;//work well
struct SIZE <N> s;//also work well
cout << s.cnt << endl;
*/
return SIZE <N> ::cnt;
}