Macro _countof
Calcola il numero di elementi in un array allocato staticamente.
_countof(
array
);
Parametri
- array
Il nome di un array.
Valore restituito
Numero di elementi nella matrice.
Note
Assicurarsi che array sia effettivamente un array, non un puntatore. In C, _countof produce risultati errati se array è un puntatore. In C++, _countof fallirà nel compilare se array è un puntatore.
Requisiti
Macro |
Intestazione obbligatoria |
---|---|
_countof |
<stdlib.h> |
Esempio
// 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
}