_countof宏
计算元素数在一个静态分配的数组。
_countof(
array
);
参数
- array
数组的名称。
返回值
数组中元素的数目。
备注
确保 array 实际上是数组,而不是指针。 在 C,则为; array 是指针, _countof 将导致错误的结果。 在 C++ 中,则为; array 是指针, _countof 无法编译。
要求
宏 |
必需的头 |
---|---|
_countof |
stdlib.h |
示例
// 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
}