Macro de _countof
Calcule le nombre d'éléments dans un tableau statique-allouée.
_countof(
array
);
Paramètres
- array
Le nom d'un tableau.
Valeur de retour
Le nombre d'éléments dans le tableau.
Notes
Assurez -vous qu' array est réellement un tableau, pas un pointeur.En C, _countof produisent des résultats erronés si array est un pointeur.En C++, _countof échouera si array est un pointeur.
Configuration requise
Macro |
en-tête requis |
---|---|
_countof |
<stdlib.h> |
Exemple
// crt_countof.cpp
#define _UNICODE
#include <stdio.h>
#include <stdlib.h>
#include <tchar.h>
int main( void )
{
_TCHAR arr[20], *p;
printf( "sizeof(arr) = %d bytes\n", sizeof(arr) );
printf( "_countof(arr) = %d elements\n", _countof(arr) );
// In C++, the following line would generate a compile-time error:
// printf( "%d\n", _countof(p) ); // error C2784 (because p is a pointer)
_tcscpy_s( arr, _countof(arr), _T("a string") );
// unlike sizeof, _countof works here for both narrow- and wide-character strings
}